2.5 处理类型 类型别名(type alias) typedef double wages ; typedef wages base, *p ; 或者是using!!别名声明! using SI = Sales_item; 2.5.2 auto 类型说明符 auto itme = val1 + v ...
分类:
编程语言 时间:
2020-11-21 11:55:38
阅读次数:
5
1、 C++有两种方法可以定义类型别名,(1) 传统的方法是使用关键字typedeftypedef double money;
typedef money price; //price也是double的别名(2) C++11新标准规定了一种新的方法,使用别名声明关键字using
例如:
#include
using namespace std;using money...
分类:
其他好文 时间:
2015-05-25 16:37:43
阅读次数:
83