标题:我也来个问题?一天拉都没弄出来!!
取消只看楼主
wangandy
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2004-8-14
 问题点数:0 回复次数:0 
我也来个问题?一天拉都没弄出来!!

关于局部类的一个问题

我认为程序没错但是怎么编译就编译不了??

郁闷!!!

#include<iostream.h> #include<string.h>

class StudentID { public: StudentID(int id=0) { value=id; cout<<"assigning srudent id"<<value<<endl; } ~StudentID() { cout<<"Destructing id"<<value<<endl; } protected: int value; }; class Student { public: Student(char* pName="noName",int ssID=0) { cout<<"Constructing student"<<pName<<endl; strncpy(name,pName,sizeof(name)); name[sizeof(name)-1]="\0"; StudentID id(ssID); } protected: char name[20]; StudentID id; }; void main() { Student s("Randy",9818); }

搜索更多相关主题的帖子: value int StudentID cout 
2004-08-17 22:39



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-4359-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.260770 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved