student.h
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // student.h
  3. //=====================================
  4. #include<iostream>
  5. using namespace std;
  6. //-------------------------------------
  7. class Student{
  8.   const int id;
  9. public:
  10.   Student(int d):id(d){ cout<<"studentn"; }
  11.   void print(){ cout<<id<<"n"; }
  12. };//-----------------------------------
  13. class Tutor{
  14.   Student s;
  15. public:
  16.   Tutor(Student& st):s(st){ cout<<"tutorn"; s.print(); }
  17. };//-----------------------------------
  18.