Cpp基础补全
getline
| std::string line; getline(cin,line);
|
scope
1 2 3
| using std::string uisng std::cout using std::cin
|
struct
1 2 3 4
| struct Sales_data { }accum, *trans;
|
auto decltype
1 2 3
| auto a = 0; decltype(a) b; decltype((a)) c = 0;
|
typedef using
1 2 3 4 5
| typedef double wages typedef wages base, *p
using SI = Sales_data; SI item;
|
string
1 2 3 4 5 6 7 8 9
| std::string::size_type len = line.size();
std::string s1 = std::string(10,"c");
std::string s2 = s1 + "World";
std::string str("some string"); for(auto c : str) std::cout << c << std::endl;
|
函数名称 |
返回值 |
isalnum() |
如果参数是字母数字,即字母或数字,该函数返回true |
isalpha() |
如果参数是字母,该函数返回真 |
isblank() |
如果参数是空格或水平制表符,该函数返回true |
iscntrl() |
如果参数是控制字符,该函数返回true |
isdigit() |
如果参数是数字(0~9),该函数返回true |
isgraph() |
如果参数是除空格之外的打印字符,该函数返回true |
islower() |
如果参数是小写字母,该函数返回true |
isprint() |
如果参数是打印字符(包括空格),该函数返回true |
ispunct() |
如果参数是标点符号,该函数返回true |
isspace() |
如果参数是标准空白字符,如空格、进纸、换行符、回车、水平制表符或者垂直制表符,该函数返回true |
isupper() |
如果参数是大写字母,该函数返回true |
isxdigit() |
如果参数是十六进制的数字,即0~9、af、AF,该函数返回true |
tolower() |
如果参数是大写字符,则返回其小写,否则返回该参数 |
toupper() |
如果参数是小写字母,则返回其大写,否则返回该参数 |