标签:
当设计头文件时,记住定义和声明的区别是很重要的。定义只可以出现一次,
而声明则可以出现多次(第 2.3.5 节)。定义,所以不应该放
在头文件里:
C++ Primer 第三章笔记 标准库类型 string
1.头文件中必须使用完全限定的标准库名称
//头文件会复制到我们的程序代码里,造成使用该头文件的程序使用头文件的using
//using namespace std; 或者 using std::string; 等
2. string s;cin >> s;
//此时会略过前置的所有空白字符,读取字符后再次读到空白字符停止
3. EOF ,这段代码中while终止条件
int main() { string word; // read until end-of-file, writing each word to a new line while (cin >> word) cout << word << endl; return 0; }
4.getline 读取内容直到遇到换行,直接遇到换行,string为空 getline(cin, line)
5.string 对象的操作
s.empty(),s为字符串,返回true,或者返回false, s.size() ,s[n], s1+s2,s1 = s2 , v1 == v2, !=, < ,<=, >,>=
6.string::size_type类型
7.cctype中的函数
isalnum(c) 如果 c 是字母或数字,则为 True。
isalpha(c) 如果 c 是字母,则为 true。
iscntrl(c) 如果 c 是控制字符,则为 true
isdigit(c) 如果 c 是数字,则为 true。
isgraph(c) 如果 c 不是空格,但可打印,则为 true。
islower(c) 如果 c 是小写字母,则为 true。
isprint(c) 如果 c 是可打印的字符,则为 true。
ispunct(c) 如果 c 是标点符号,则 true。
isspace(c) 如果 c 是空白字符,则为 true。
isupper(c) 如果 c 是大写字母,则 true。
isxdigit(c) 如果是 c 十六进制数,则为 true。
tolower(c) 如果 c 大写字母,返回其小写字母形式,否则直接返回 c。
toupper(c) 如果 c 是小写字母,则返回其大写字母形式,否则直接返回 c。
大部分返回0表示成功
标签:
原文地址:http://www.cnblogs.com/secoolar/p/4557546.html