首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴春流平岸的代码贴全部
#include "stdafx.h"
#include <iostream>
#include "Person.h"
using std::cout;
using std::endl;
main()
{
string str("tony");
CPerson p1;
CPerson p2 = CPerson(1, str,25,8000);
cout<<"p1的信息:"<<endl;
cout << "m_shAge is:" << p1.getAge() << endl;
......................
阅读全部 | 2017年2月9日 22:04
1
春流平岸