c++ typedef关键字

// ConsoleApplication2.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include 
#include 
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
    //typedef就是简单的给类型重起个别名
    typedef int zheng;
    typedef string chuan;

    zheng aa =144;
    chuan  bb= "xuhaitao";
    cout << aa << bb << endl;
    system("pause");
}


c++ typedef关键字_第1张图片



FR:海涛高软(hunk Xu) QQ技术交流群:386476712

你可能感兴趣的:(C++基础)