我已经定义了一个类,
目的:模拟字符串但具有更多功能
class ex_char
{
public:
ex_char(char *input):len(strlen(input)){strcpy(str,input);}
...functions...
private:
char *str; //where the char array is saved
int len; //length of the char array
};
对于普通的 char 数组,我们可以使用:
char charray[10]="String";
cout<<charray;
显示 char 数组的内容
但是我怎样才能显示我班级的 str 属性的内容
cout<<excharray;