C++语言
2021-06-10 09:03
标签:整数 元素 reverse ace new eve 枚举类 枚举 head C++语言 标签:整数 元素 reverse ace new eve 枚举类 枚举 head 原文地址:https://www.cnblogs.com/AlenDou-blog/p/14456046.htmltypedef type newname; // 为已有的类型取一个新名字
// 枚举类型
enum color {red, green=5, yellow};
// color: 枚举名
// red, green, yellow: 标识符
// 默认,第一个标识符的值为0,第二个标识符的值为1,以此类推
// 也可以赋值,此时yellow=6,总是比前一个大1
// 定义常量
#define LENGTH 10
const int LENGTH 10;
// 杂项运算符
sizeof(a) // 4,a为整数
vector
#include
排序
#include
bool campare(int a, int b)
{
return a b为降序排列
}
int main()
{
int a[20] = {...};
sort(a, a + 20, compare);
}
上一篇:配置java环境
下一篇:Java垃圾回收机制详解