ch12_14.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //***********************
  2. //**    ch12_14.cpp    **
  3. //***********************
  4. #include <iostream.h>
  5. #include <string.h>
  6. class SmallOne{
  7. public:
  8.   SmallOne(int sma)
  9.   {
  10.     cout <<"Smallone constructing with a value of"
  11.          <<sma <<endl;
  12.   }
  13. };
  14. void fn(int n)
  15. {
  16.   static SmallOne sm(n);
  17.   cout <<"In function fn with n= " <<n <<endl;
  18. }
  19. void main()
  20. {
  21.   fn(10);
  22.   fn(20);
  23. }