gpt4 book ai didi

c++ primer 4th edition - 字符串问题

转载 作者:太空宇宙 更新时间:2023-11-04 15:52:39 26 4
gpt4 key购买 nike

我正在阅读这本书中关于字符串和文字的第 86 页,但我不明白为什么它会说以下关于字符串 s1 和 s2 的内容。

string s1("hello, ");  
string s2("world\n");
string s3 = s1+s2;
..

它说 s1s2 直接包含标点符号。标点?什么标点符号。

也在第 87 页。

string s1 = "hello"; // no punctuation. Again what punctuation?

谁能解释一下?

最佳答案

我真的进去看了有问题的书。作者认为“,”和“\n”是“标点符号”。

第 86 页的下一句说:

The strings s1 and s2 included punctuation directly. 
We could achieve the same result by mixing string objects
and string literals as follows:

string s1("hello");
string s2("world");
string s3 = s1 + ", " + s2 + "\n";

-- 丹

关于c++ primer 4th edition - 字符串问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5453569/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com