?? ch12_14.cpp
字號:
//***********************
//** ch12_14.cpp **
//***********************
#include <iostream.h>
#include <string.h>
class SmallOne{
public:
SmallOne(int sma)
{
cout <<"Smallone constructing with a value of"
<<sma <<endl;
}
};
void fn(int n)
{
static SmallOne sm(n);
cout <<"In function fn with n= " <<n <<endl;
}
void main()
{
fn(10);
fn(20);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -