ch05_1.cpp

来自「Since the field of object oriented progr」· C++ 代码 · 共 60 行

CPP
60
字号
                              // Chapter 5 - Programming exercise 1
#include <iostream.h>

class one_datum {
   int data_store;
public:
   void set(int in_value);
   int get_value(void);
   int square(void);
};

void one_datum::set(int in_value)
{
   data_store = in_value;
}

int one_datum::get_value(void)
{
   return data_store;
}

int one_datum::square(void)
{
   return data_store * data_store;
}

main()
{
one_datum dog1, dog2, dog3;
int piggy;

   dog1.set(12);
   dog2.set(17);
   dog3.set(-13);
   piggy = 123;

// dog1.data_store = 115;      This is illegal in C++
// dog2.data_store = 211;      This is illegal in C++

   cout << "The value of dog1 is " << dog1.get_value() << "\n";
   cout << "The value of dog2 is " << dog2.get_value() << "\n";
   cout << "The value of dog3 is " << dog3.get_value() << "\n";
   cout << "The value of piggy is " << piggy << "\n";

   cout << "The value of dog1 squared is " << dog1.square() << "\n";
   cout << "The value of dog2 squared is " << dog2.square() << "\n";
}




// Result of execution
//
// The value of dog1 is 12
// The value of dog2 is 17
// The value of dog3 is -13
// The value of piggy is 123
// The value of dog1 squared is 144
// The value of dog2 squared is 289

⌨️ 快捷键说明

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