What & How & Why

差别

这里会显示出您选择的修订版和当前版本之间的差别。

到此差别页面的链接

两侧同时换到之前的修订记录前一修订版
后一修订版
前一修订版
上一修订版两侧同时换到之后的修订记录
cs:programming:cpp:cpp_primer:2_var_n_types [2024/04/15 00:18] – [List 初始化] codingharecs:programming:cpp:cpp_primer:2_var_n_types [2024/04/16 02:53] – [指向指针的指针] codinghare
行 309: 行 309:
 int **ppi = π //&pi is the address of the pointer, not the address which pointer points int **ppi = π //&pi is the address of the pointer, not the address which pointer points
 </code> </code>
 +\\ \\ 
 +{{ :cs:programming:cpp:cpp_primer:ppi.svg?250 |}}
 +\\ \\ 
  
-<html><div align="center"> 
-<img src="/_media/programming/cpp/cpp_primer/ppi.svg"  width="350"/> 
-</div> 
-</html>\\  
 当然,如果需要通过 ''ppi'' 来访问 ''i'' 的内容,我们需要解引用两次: 当然,如果需要通过 ''ppi'' 来访问 ''i'' 的内容,我们需要解引用两次:
 <code cpp> <code cpp>