1620-7 唐大智《2016年12月28日》[连续第八十八天总结]
标题:今天继续水题
关键词:类与对象题目
内容(A)
#include<iostream.h>
#include<string.h>
class String{
char *str;
public:
String(char *s)
{
str=new char[strlen(s)+1] //为指针str申请动态内存
strcpy(str,s) //给成员字符串赋值 }
~String()
{delete []str;}
void main()
{cout<<str<<'\n';}
};
void main()
{
String st("abcde"); //定义一个对象st,使其成员值为abcde
at.print(); //输出成员数据
}
(B)明日计划:这几天都是简单的练下手,不进行新的学习,多准备考试