Robin 发表于 2005-6-2 16:46:00

笔试题好多不会做~郁闷

题目都是C/C++ ~郁闷啊。。。就学过C~~~谁会做教教偶啊。。写下答案
一、请填写BOOL , float, 指针变量 与“零值”比较的 if 语句。(10分)
提示:这里“零值”可以是0, 0.0 , FALSE或者“空指针”。例如 int 变量 n 与“零值”比较的 if 语句为:
    if ( n == 0 )
    if ( n != 0 )
以此类推。
请写出 BOOLflag 与“零值”比较的 if 语句:

请写出 floatx 与“零值”比较的 if 语句:

请写出 char*p 与“零值”比较的 if 语句:

二、以下为Windows NT下的32位C++程序,请计算sizeof的值(10分)
charstr[] = “Hello” ;
char   *p = str ;
int   n = 10;
请计算
sizeof (str ) =               
sizeof ( p ) =               
sizeof ( n ) =
void Func ( char str)
{
请计算
sizeof( str ) =   
}
void *p = malloc( 100 );
请计算
sizeof ( p ) =
三、简答题(25分)
1、头文件中的 ifndef/define/endif 干什么用?
2、#include   和#include“filename.h” 有什么区别?
3、const 有什么用途?(请至少说明两种)
4、在C++ 程序中调用被 C编译器编译后的函数,为什么要加 extern “C”声明?
四、有关内存的思考题(20分)
void GetMemory(char *p)
{
p = (char *)malloc(100);
}
void Test(void)
{
char *str = NULL;
GetMemory(str);
strcpy(str, "hello world");
printf(str);
}
请问运行Test函数会有什么样的结果?
答:

Void GetMemory2(char **p, int num)
{
*p = (char *)malloc(num);
}
void Test(void)
{
char *str = NULL;
GetMemory(&str, 100);
strcpy(str, "hello");
printf(str);
}
请问运行Test函数会有什么样的结果?
答:
char *GetMemory(void)
{
char p[] = "hello world";
return p;
}
void Test(void)
{
char *str = NULL;
str = GetMemory();
printf(str);
}
请问运行Test函数会有什么样的结果?
答:

void Test(void)
{
char *str = (char *) malloc(100);
strcpy(str, “hello”);
free(str);   
if(str != NULL)
{
strcpy(str, “world”);
printf(str);
}
}
请问运行Test函数会有什么样的结果?
答:

五、编写strcpy函数(10分)
已知strcpy函数的原型是
char *strcpy(char *strDest, const char *strSrc);
其中strDest是目的字符串,strSrc是源字符串。
(1)不调用C++/C的字符串库函数,请编写函数 strcpy

2)strcpy能把strSrc的内容复制到strDest,为什么还要char * 类型的返回值?

六、编写类String的构造函数、析构函数和赋值函数(25分)
已知类String的原型为:
class String
{
   public:
String(const char *str = NULL); // 普通构造函数
String(const String &other);   // 拷贝构造函数
~ String(void);         // 析构函数
String & operate =(const String &other); // 赋值函数
   private:
char   *m_data;    // 用于保存字符串
};
请编写String的上述4个函数。

游侠无极限 发表于 2005-6-2 18:59:00

<P>软考的?</P><P>其实都是很基本的题目阿</P>

Robin 发表于 2005-6-2 21:59:00

<B>以下是引用<I>游侠无极限</I>在2005-6-2 18:59:15的发言:</B>

<P>软考的?</P>
<P>其实都是很基本的题目阿</P>


C有N年没看了。。大哥给几道答案吧

Eagle 发表于 2005-6-3 10:54:00

<P>都很简单啊,要比较0值你只要注意它的范围和精度就可以了。</P><P>sizeof除了第一个为6,其余的都应该为4,因为它们事实上都是在对指针进行sizeof操作,而不是指针指向的数据区。</P>

yzhlinux 发表于 2005-6-3 15:04:00

<B>以下是引用<I>Eagle</I>在2005-6-3 10:54:17的发言:</B>

<P>都很简单啊,要比较0值你只要注意它的范围和精度就可以了。</P>
<P>sizeof除了第一个为6,其余的都应该为4,因为它们事实上都是在对指针进行sizeof操作,而不是指针指向的数据区。</P>


yes you are all right
楼主这些题目实在太基础了,如果这些不会,需要去看基础的知识,推荐 C++ primer

游侠无极限 发表于 2005-6-3 19:14:00

三、简答题(25分)
1、头文件中的 ifndef/define/endif 干什么用?
<B>起码加上前缀(#)吧,其中 #ifnedf 就是说如果没有定义什么则……
#define xxx yyy 就是把之后出现的yyy用xxx替换
#endif 与#if系列配合使用</B>
2、#include   和#include“filename.h” 有什么区别?
<B>这个玩笑闹大了…… 估计前是用是指先在系统指定的包含目录中查找文件,""是在当前目录中,当然可以使用绝对路径 </B>
3、const 有什么用途?(请至少说明两种)
<B>限制变量不被修改,保证函数不修改变量</B>
4、在C++ 程序中调用被 C编译器编译后的函数,为什么要加 extern “C”声明?
<B>指编译的时候使用C风格的函数名</B>

四、有关内存的思考题(20分)
void GetMemory(char *p)
{
p = (char *)malloc(100);
}
void Test(void)
{
char *str = NULL;
GetMemory(str);
strcpy(str, "hello world");
printf(str);
}
请问运行Test函数会有什么样的结果?
答:<B>错误,str没有正确指向申请的内存地址</B>
Void GetMemory2(char **p, int num)
{
*p = (char *)malloc(num);
}
void Test(void)
{
char *str = NULL;
GetMemory(&amp;str, 100);
strcpy(str, "hello");
printf(str);
}
请问运行Test函数会有什么样的结果?
答:<B>正确执行,打印出“Hello”</B>
char *GetMemory(void)
{
char p[] = "hello world";
return p;
}
void Test(void)
{
char *str = NULL;
str = GetMemory();
printf(str);
}
请问运行Test函数会有什么样的结果?
答:<B>错误,str指向的内存地址已经被系统释放</B>
void Test(void)
{
char *str = (char *) malloc(100);
strcpy(str, “hello”);
free(str);   
if(str != NULL)
{
strcpy(str, “world”);
printf(str);
}
}
请问运行Test函数会有什么样的结果?
答:<B>错误,free函数不负责将str置0,故strcpy无法正确工作</B>

五、编写strcpy函数(10分)
已知strcpy函数的原型是
char *strcpy(char *strDest, const char *strSrc);
其中strDest是目的字符串,strSrc是源字符串。
(1)不调用C++/C的字符串库函数,请编写函数 strcpy
<B>char *strcpy(char *strDest, const char *strSrc)
{
    if(strDest == NULL || strSrc == NULL) return 0;
    for(int i =0;(strDest[ I] = strSrc) != 0;i++);
    return strDest;
}</B>
2)strcpy能把strSrc的内容复制到strDest,为什么还要char * 类型的返回值?
<B>这个倒真不知道,大概是利于编程</B>
六、编写类String的构造函数、析构函数和赋值函数(25分)
已知类String的原型为:
class String
{
   public:
String(const char *str = NULL) // 普通构造函数
{
    if(str==NULL){
      m_data = new char;
      m_data = 0;
    }
    else
    {
      m_data = new char;
      strcpy(m_data,str);
    }
}
String(const String &amp;other)   // 拷贝构造函数
{
      *this = other;
}
~ String(void)       // 析构函数
{
   delete [] m_data;
}
String &amp; operate =(const String &amp;other) // 赋值函数
{
      m_data = new char;
      strcpy(m_data,str);
    return *this;
}
   private:
char   *m_data;    // 用于保存字符串
};
请编写String的上述4个函数。
[此贴子已经被作者于2005-6-3 19:23:13编辑过]

yzhlinux 发表于 2005-6-3 22:33:00

<P>2)strcpy能把strSrc的内容复制到strDest,为什么还要char * 类型的返回值?
<B>这个倒真不知道,大概是利于编程</B></P><P>返回的是 strDest 指针,如果没有返回这个指针则说明函数执行失败(这个函数也是有可能失败的,比如溢出了,或者指针不可读等等)</P>

游侠无极限 发表于 2005-6-3 23:06:00

<P>不过只要有返回值就可以判断是否执行成功吧,比如bool,BOOL都可以</P>

薄荷七星 发表于 2005-6-4 22:39:00

才初学C++,还没入门,只知道sizeof(p)的值~~
页: [1]
查看完整版本: 笔试题好多不会做~郁闷