while
do-while
for循环
循环和变时作用域
跳过循环迭代: continue;
循环的中断 : break;
第六章 数组和字符串
1 数组的定义
double tempertures[366];
避免幻数:可以声明一下数组的大小
初始化数组: int sample[]={2,3,4,5,6};
初始化数组的大小: int sample[5]={2,3,4,5,6};
取得数组所占用的字节数 : sizeof 数组名
字符数组: char values={'a','b','c','d'}; 自动在数组末尾添加'\n'
多维数组:int temp[3][4];
初始化多维数组: int temp[2][3]={
{1,2,3},
{4,5,6}
};
多维字符数组: char str[3][3]={
"hello",
"the ",
"word"
}; 注些处可以不用花括号
String字符串
访问字符串
访问子串substr
比较字符串 compare()
搜索字符串 str.find();
查找字符集合中的字符:find_first_of() find_first_not_of()
字符串逆向搜索rfind()
修改字符串
插入字符串:str1.insert(int,str2);
替换字符串:str1.replace(begin,end,str2);
String类型的数组
c++学习笔记五
最新推荐文章于 2024-11-09 13:08:09 发布