c++中typedef類型定義的用法,typedef,為“類型定義”,可以解釋為:將一種數(shù)據(jù)類型定義為某一個(gè)標(biāo)識(shí)符,在程序中使用該標(biāo)識(shí)符來實(shí)現(xiàn)相應(yīng)數(shù)據(jù)類型變量的定義。
總結(jié)一下,常用之處
1: 定義函數(shù)指針
#include "stdafx.h"
#include
#include
using namespace std;
typedef void (*F)(int);
void print1(int x){
cout< } int main(){ F a; a = print1; (*a)(20); } 2:簡單類型替換: #include "stdafx.h" #include #include using namespace std; typedef int I; int main(){ I a; a = 10; //a = "a";//false cout<
} 3:定義數(shù)組類型: #include "stdafx.h" #include #include using namespace std; typedef int A[3]; int main(){ A b = {3,4,5}; cout< }
計(jì)算機(jī)等級(jí)考試二級(jí)C++模擬試題15套(筆試)
2010年上半年全國計(jì)算機(jī)等考報(bào)名時(shí)間匯總
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |