本 Wiki 开启了 HTTPS。但由于同 IP 的 Blog 也开启了 HTTPS,因此本站必须要支持 SNI 的浏览器才能浏览。为了兼容一部分浏览器,本站保留了 HTTP 作为兼容。如果您的浏览器支持 SNI,请尽量通过 HTTPS 访问本站,谢谢!
这里会显示出您选择的修订版和当前版本之间的差别。
两侧同时换到之前的修订记录前一修订版后一修订版 | 前一修订版 | ||
cs:programming:cpp:courses:cpp_basic_deep:chpt_3 [2024/04/18 04:47] – [std::String] codinghare | cs:programming:cpp:courses:cpp_basic_deep:chpt_3 [2024/08/11 04:26] (当前版本) – [指向数组开头和结尾的指针] codinghare | ||
---|---|---|---|
行 201: | 行 201: | ||
// | // | ||
extern int array[]; | extern int array[]; | ||
- | std::begin(b); std::end(b); | + | std::begin(array); std::end(array); |
</ | </ | ||
对于 incomplete type 的获取,如需使用 | 对于 incomplete type 的获取,如需使用 | ||
行 208: | 行 208: | ||
//ok | //ok | ||
extern int array[4]; | extern int array[4]; | ||
- | std::begin(b); std::end(b); | + | std::begin(array); std::end(array); |
</ | </ | ||
<WRAP center round box 100%> | <WRAP center round box 100%> | ||
行 496: | 行 496: | ||
//error | //error | ||
newStr = " | newStr = " | ||
+ | //索引 | ||
+ | myStr[0]; | ||
+ | </ | ||
+ | ==转化 std::string 到 c-string== | ||
+ | <code cpp> | ||
+ | // | ||
+ | myStr.c_str(); | ||
</ | </ |