Point.cpp
上传用户:sz0451
上传日期:2022-07-29
资源大小:256k
文件大小:1k
源码类别:

.net编程

开发平台:

Visual C++

  1. // This is the main project file for VC++ application project 
  2. // generated using an Application Wizard.
  3. #include "stdafx.h"
  4. #using <mscorlib.dll>
  5. #include <tchar.h>
  6. using namespace System;
  7. // The Point structure definition
  8. __value struct Point
  9. {
  10. public:
  11. Point() { x=-1; y=-1; }
  12. Point(int xVal, int yVal) { x=xVal; y=yVal; }
  13. int x,y;
  14. };
  15. // This is the entry point for this application
  16. int _tmain(void)
  17. {
  18. int n = 0;
  19. System::Int32 n1 = 0;
  20.     Console::WriteLine(S"A Simple Structure");
  21. Point p1;   // Use the default constructor
  22. //p1.x = 10;
  23. //p1.y = 20;
  24. Console::Write(S"p1.x is ");
  25. Console::WriteLine(p1.x);
  26. Point p2(10,10);
  27. Console::Write(S"p2.x is ");
  28. Console::WriteLine(p2.x);
  29.     return 0;
  30. }