C++中sizeof和strlen的用法誤區

sizeof函數是求表達式或者類型的字節數的,strlen是求字符串的長度的。sizeof遇到’\0’會把它的長度算進去,而strlen不會把’\0’算進去,而是到‘\0’就中止計算。 例如 #include<iostream> #include<cstring> #include<string> using namespace std; int main() { char str1[]
相關文章
相關標籤/搜索