摘要: 1 // Cplus001.cpp : Defines the entry point for the console application. 2 // 3 4 #include "stdafx.h" 5 #include "iostream" 6 #include "string" 7 8 using namespace std; 9 10 //the definition of class11 class Person12 {13 public:14 void speak();15 private:16 string words 阅读全文