ndsyntax.cpp.svn-base

来自「QT方面的开发」· SVN-BASE 代码 · 共 9 行

SVN-BASE
9
字号
{ int* ip = 0;   /* null pointer */ ip = new int;  /* allocate space for an int */ int* jp = new int(13);     /* allocate and initialize */ [...]       delete ip;    /* Without this, we have a memory leak. */ delete jp;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?