| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 546 人关注过本帖
标题:大家帮忙看看啊,问题在那个注释里
取消只看楼主 加入收藏
zd123
Rank: 2
等 级:论坛游民
帖 子:43
专家分:33
注 册:2009-9-4
结帖率:70%
收藏
已结贴  问题点数:20 回复次数:0 
大家帮忙看看啊,问题在那个注释里
// a.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include<iostream>
#include<cstring>
using namespace std;
class Strclass
{
public:
    char *p;
    int length;
public:
    Strclass();
    Strclass(char *str,int len);
    char * getstring(){return p;}
    int getlength(){return length;}
};
Strclass::Strclass()
{
    p=new char[255];
    if(!p)
    {
        cout<<"Allocatinon  error!"<<endl;
        exit(1);
    }
    *p='\0';                                                     // 为什么是*p='\0' 难道p此时指到  最后面?????????  此时p不是指向内存块的头部吗
    length=255;
}
Strclass::Strclass(char* str,int len)
{
    if(strlen(str)>=len)
    {
        cout<<"Allocation too little memory!"<<endl;
        exit(1);
    }
    p=new char(len);
    if(!p)
    {
        cout<<"Allocation error!"<<endl;
        exit(1);
    }
    strcpy(p,str);
    length=len;
}

int _tmain(int argc, _TCHAR* argv[])
{
    Strclass ob1;
    Strclass ob2("This is a string .",100);
    cout<<ob1.p<<endl;
    cout<<ob1.getlength()<<endl;


    return 0;
}

搜索更多相关主题的帖子: 注释 
2009-11-23 23:29
快速回复:大家帮忙看看啊,问题在那个注释里
数据加载中...
 
   



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

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