CPP typedef

原创
2014/04/19 17:36
阅读数 51

typedef 类型别名?

Typedef.cc:

#include<iostream>
#include<string>
typedef double wages;
int main()
{
    wages w = 5000;
    std::cout << "w =" << w << std::endl;
}

是否可以用来跨平台?

展开阅读全文
加载中
点击引领话题📣 发布并加入讨论🔥
0 评论
0 收藏
0
分享
返回顶部
顶部