之後的所有元素要重新創建我的這個小問題,使用此代碼(是的,它bruteforced並且可以精簡下來):C++指針,指向字符數組特定元素返回指定一個
char hello[] = "John";
char *ptr1 = &hello[0];
char *ptr2 = &hello[1];
char *ptr3 = &hello[2];
char *ptr4 = &hello[3];
std::cout << ptr1 << "$";
std::cout << ptr2 << "$";
std::cout << ptr3 << "$";
std::cout << ptr4 << "$";
,你可能會看到嘗試此代碼後,它返回以下內容:
我不知道爲什麼它需要指定的所有元素之後。
任何幫助?
剛看到托馬斯的時候看到了你的答案。感謝您及時的回覆。 – Code0 2014-09-20 06:46:24