摘要:
#include "stdafx.h"#include "iostream" using namespace std; class Point{public: Point(double x,double y); ~Point(); //获得类的成员变量_x的值 double GetX()const{ 阅读全文
摘要:
#include "stdafx.h"#include "iostream" using namespace std; class Stack{public: virtual void push(char c) = 0; virtual char pop() = 0;}; class ArraySt 阅读全文