Chinaunix首页 | 论坛 | 博客
  • 博客访问: 210364
  • 博文数量: 87
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 798
  • 用 户 组: 普通用户
  • 注册时间: 2015-01-14 14:54
文章分类

全部博文(87)

文章存档

2015年(87)

我的朋友

发布时间:2015-03-14 16:07:42

......【阅读全文】

阅读(969) | 评论(0) | 转发(0)

发布时间:2015-03-14 16:00:44

功 能: 将s所指向的某一块内存中的每个字节的内容全部设置为ch指定的ASCII值,  块的大小由第三个参数指定,这个函数通常为新申请的内存做初始化工作  用 法: void *memset(void *s, char ch, unsigned n);  程序例:  #include   #include   #include .........【阅读全文】

阅读(2678) | 评论(0) | 转发(1)

发布时间:2015-02-10 17:22:27

一 :<iostream>和<iostream.h>是不一样,前者没有后缀,实际上,在你的编译器include文件夹里面可以看到,二者是两个文件,打开文件就会发现,里面的代码是不一样的。 后缀为.h的头文件c++标准已经明确提出不支持了,早些的实现将标准库功能定义在全局空间里,声明在带.h后缀的头文件里,c++标准为了和C区别.........【阅读全文】

阅读(881) | 评论(0) | 转发(0)

发布时间:2015-02-07 15:43:38

如下程序: #include <iostream> #include <string> using namespace std; class Student {     public:     static int number;     string name; public:     Student() { } &nbs.........【阅读全文】

阅读(775) | 评论(0) | 转发(0)

发布时间:2015-02-06 14:51:16

函数名: strdup功  能: 将串拷贝到新建的位置处用  法: char *strdup(char *str); 这个函数在linux的man手册里解释为:The strdup() function returns a pointer to a new string which is aduplicate of the strings. Memory for thenew string is obtained withmalloc(3),.........【阅读全文】

阅读(1180) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册