point.cpp

来自「TC-ucos-philos-详细注释.rar 用TC编译ucos并在图像」· C++ 代码 · 共 35 行

CPP
35
字号
// Borland C++ - (C) Copyright 1991 by Borland International

// POINT.CPP - Example from Getting Started
//             Illustrates a simple Point class 

#include <iostream.h>	// needed for C++ I/O

class Point {		// define Point class
   int X;               // X and Y are private by default
   int Y;
public:
   Point(int InitX, int InitY) {X = InitX; Y = InitY;}
   int GetX() {return X;}  // public member functions
   int GetY() {return Y;}
};

int main()
{
   int YourX, YourY;

   cout << "Set X coordinate: ";  // screen prompt
   cin >> YourX;                  // keyboard input to YourX

   cout << "Set Y coordinate: ";  // another prompt
   cin >> YourY;                  // key value for YourY

   Point YourPoint(YourX, YourY);  // declaration calls constructor

   cout << "X is " << YourPoint.GetX(); // call member function
   cout << '\n';                        // newline
   cout << "Y is " << YourPoint.GetY(); // call member function
   cout << '\n';
   return 0;
}

⌨️ 快捷键说明

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