首页 > 编程 > C > 正文

c++中typedef的使用方法

2023-06-09 12:08:05
字体:
来源:转载
供稿:网友

c++中有一个关键字typedef,它主要是把一种数据类型定义为另一个标识符来使用,在程序中使用该标识符来实现相应数据类型变量的定义。下面给出三种常用的地方。

(1)简单类型替换:

#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;
typedef int INT;

int main( ){
 INT  a;
 a = 10;
 //a = "a";//false
 cout<<a;
}

(2)定义数组类型:

#include "stdafx.h"  
#include <iostream>   
#include <string>  
using namespace std;  
 
typedef int A[3];  
int main(){  
    A b = {3,4,5};  
    cout<<sizeof(b);  
}

(3)定义函数指针

#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;

typedef void (*F)(int);
void print1(int x){
 cout<<x;
}
int main(){
 F a;
 a = print1;
 (*a)(20);
}

从上面的例子可以看出,有时typedef可以简化操作符,或使用自己熟悉的操作符来代替不熟悉的。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表