概述
3.37
const char ca[] = { 'h', 'e', 'l', 'l', 'o' };
const char *cp = ca;
while (*cp) {
cout << *cp << endl;
++cp;
}
当打印完ca中所有内容后,循环并没有结束,会继续打印不知道什么东西。这显然不是我们想要的结果。
3.38
指针相减 会得到指针所指地址之间的距离
指针相加着没有任何意义 ,如果有 ,你告诉我是什么?
3.39
#include <iostream>
#include <string>
#include <cstring>
using namespace std;
int main()
{
string s1("hello"), s2("world");
if (s1 == s2)
cout << "same string." << endl;
else if (s1 > s2)
cout << "hello > world" << endl;
else
cout << "hello < world" << endl;
const char* cs1 = "hello";
const char* cs2 = "world";
auto result = strcmp(cs1, cs2);
if (result == 0)
cout << "same string." << endl;
else if (result < 0)
cout << "hello < world" << endl;
else
cout << "hello > world" << endl;
return 0;
}
3.40
#include <iostream>
#include <cstring>
const char cstr1[]="Hello";
const char cstr2[]="world!";
int main()
{
constexpr size_t new_size = strlen(cstr1) + strlen(" ") + strlen(cstr2) +1;
char cstr3[new_size];
strcpy(cstr3, cstr1);
strcat(cstr3, " ");
strcat(cstr3, cstr2);
std::cout << cstr3 << std::endl;
}
当然 上面的代码是错误的。
一些讨论
最后
以上就是安静奇迹为你收集整理的3.5.4的全部内容,希望文章能够帮你解决3.5.4所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复