看板 C_and_CPP 關於我們 聯絡資訊
int PingAgent::command(int argc, const char*const* argv) 上面這行是我今天看到的 code 可是看到黃色的部份就愣住了 char*後面又一個const*,請問這該怎麼理解呢?? -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 140.113.5.208
StubbornLin:前面是只指標不會變 後面是指 指向的內容不會變 08/11 01:04
StubbornLin:我沒記錯的話 08/11 01:05
jason2506:我想是 pointer to const pointer to const char? 08/11 01:08
james732:兩個const還好理解 但是兩顆分開的星星是...?? 08/11 01:12
hkctw:三樓正解 08/11 01:23
stonehomelaa:由右往左讀 08/11 01:28
su31o4gj83:三樓正解, const會先修飾左邊 08/11 11:13
su31o4gj83:http://tinyurl.com/rwe6g 搜尋"left" 08/11 11:14
ledia:遇到這種的, 我都要寫個程式 compile 看看哪種能過哪種不能 08/11 11:36
ledia:囧 08/11 11:37
netsphere:有學有推 08/11 11:40
Biboy:懂了! 謝謝各位~ 08/11 22:03