我的修改方式如下:
#include<iostream> using namespace std; class Time{ public: void set_time(void); void show_time(void); private: int hour; int minute; int sec; }; Time t; int main() { t.set_time(); t.show_time(); return 0; } void Time::set_time(void) { cin >> t.hour; cin >> t.minute; cin >> t.sec; } void Time::show_time(void) { cout<< t.hour << ":" << t.minute << ":" << t.sec << endl; }这个题最好在C++环境下调试运行
//student.h #include<string> using namespace std; class Student{ public: void display(); void set_value(); private: int num; string name; char sex; }; //student.cpp #include<iostream> #include "student.h" void Student::display() { cout << "num:" << num << endl; cout << "name:" << name <<endl; cout << "sex:" << sex << endl; } void Student::set_value() { cout << "Please input num name and sex:"<< endl; cin >> num >> name >> sex; } //main.cpp #include<iostream> #include "student.h" using namespace std; int main() { Student stud; stud.set_value(); stud.display(); return 0; }部分运行结果如下:
arraymax.h
class Array_max { public: void set_value(); void max_value(); void show_value(); private: int array[10]; int max; };arraymax.cpp
#include<iostream> #include "arraymax.h" using namespace std; void Array_max::set_value() { int i; for(i = 0; i < 10; i++) cin >> array[i]; } void Array_max::max_value() { int i; max = array[0]; for(i = 1; i < 10; i++) if(array[i] > max) max = array[i]; } void Array_max::show_value() { cout << "max=" << max << endl; }file1.cpp
#include<iostream> #include "arraymax.h" using namespace std; int main() { Array_max a; a.set_value(); a.max_value(); a.show_value(); return 0; }我的样例运行结果如下
T6.h
#include<iostream> using namespace std; class Rectangle { public: void set_value(); double volume(); private: double length; double width; double height; }; void Rectangle::set_value() { cout << "Please input length, width and height:"<<endl; cin >> length >> width >> height; } double Rectangle::volume() { return length * width * height; }main6.cpp
#include<iostream> #include "T6.h" using namespace std; int main() { Rectangle r[3]; for(int i = 0; i < 3; i++) r[i].set_value(); cout << '\n'; for(int i = 0; i < 3; i++) cout << "rectangle " << i + 1 <<"'s volueme is : " <<r[i].volume() << endl; return 0; }最好将成员函数的定义和所属的类放在同一个文件里,这样编译运行效率更高
标准正确的class定义规范是: class { };
我的样例运行结果如下: