这个怎么错了 我刚刚学到类~
首先谢谢各位大虾百忙之中来找错!~#include "iostream"
using namespace std;
class print{
public:
void setp(int);
void p();
private:
int a;
};
void print::setp(int w)
{
a=w;
}
void print::p()
{
cout<<"hello my c++"<<endl;
}
void main()
{
print b;
b.setp(33);
cout<<b<<endl;
b.print();
}