📄 subject_25798.htm
字号:
<p>
序号:25798 发表者:死循环 发表日期:2002-12-25 20:31:02
<br>主题:C++的疑惑
<br>内容:#include<iostream.h><BR>class anyclass{<BR>private:<BR> int i;<BR>public:<BR> void evaluate(int x = 0){ i = x; }<BR> void show(){ cout<<i<<endl; }<BR>};<BR>void main(){<BR> anyclass* a[] = {new anyclass, new anyclass,};<BR> //anyclass* b[] = {new anyclass, new anyclass }; //这样却不可以,这是为什么呢?<BR>}<BR>2002-12-26 17:05:05
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -