免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: 爱随柳飘
打印 上一主题 下一主题

指教字符串问题 [复制链接]

论坛徽章:
0
11 [报告]
发表于 2006-03-28 10:49 |只看该作者
……我觉得我这么多都白写了……

论坛徽章:
0
12 [报告]
发表于 2006-03-28 14:53 |只看该作者
原帖由 爱随柳飘 于 2006-3-28 10:36 发表


sizeof与 strlen,为什么其测的长度会不同呢?
就是因为'\0'的原因吗?



好好看看上面的。。你就知道了。

论坛徽章:
0
13 [报告]
发表于 2006-03-28 16:07 |只看该作者
其实用一个示例就可以了.

fun1()
{
char *p1="aabbbcc";
char p2[20],p3[20];

strcpy(p2,"aabbcc");   //正确的
strcpy(p2,p1);   //正确的
strcpy(p3,p2);  //正确的
strcpy(p1,"aabbcc");  //错误的写法,有些编译器能显示出这种错误,但如果编译通过也不会出现运行错误
strcpy(p1,"aabbccdd");  //错误的写法,即使编译通过运行时也会出现超界引起的不确定错误.
}

strcpy的第一个参数只能是一个字符串数组,或者是一个指向这个数组的指针.
而第二个参数则除了第一个参数的类型外,还可以是一个字符串长量,或者由系统初始化的字符串指针.

sizeof是用来检测一个数据类型的所占的存储空间,strlen返回的是由指针所指位置到第一个'\0'的偏移量.
C语言一个关键的问题就是所有的变量没有边界检查,所定义的长度只在编译时有用,而在运行时则不做任何处理.

论坛徽章:
0
14 [报告]
发表于 2006-03-30 04:13 |只看该作者
原帖由 爱随柳飘 于 2006-3-28 10:31 发表





当中的#include<stdlib.h>是什么样的库函数啊?

malloc在这里:
B.5 Utility Functions: <stdlib.h>
The header <stdlib.h> declares functions for number conversion, storage allocation, and similar tasks.
double atof(const char *s)
atof converts s to double; it is equivalent to strtod(s, (char**)NULL).

int atoi(const char *s)
converts s to int; it is equivalent to (int)strtol(s, (char**)NULL, 10).

long atol(const char *s)
converts s to long; it is equivalent to strtol(s, (char**)NULL, 10).

double strtod(const char *s, char **endp)
strtod converts the prefix of s to double, ignoring leading white space; it stores a pointer to any unconverted suffix in *endp unless endp is NULL. If the answer would overflow, HUGE_VAL is returned with the proper sign; if the answer would underflow, zero is returned. In either case errno is set to ERANGE.

long strtol(const char *s, char **endp, int base)
strtol converts the prefix of s to long, ignoring leading white space; it stores a pointer to any unconverted suffix in *endp unless endp is NULL. If base is between 2 and 36, conversion is done assuming that the input is written in that base. If base is zero, the base is 8, 10, or 16; leading 0 implies octal and leading 0x or 0X hexadecimal. Letters in either case represent digits from 10 to base-1; a leading 0x or 0X is permitted in base 16. If the answer would overflow, LONG_MAX or LONG_MIN is returned, depending on the sign of the result, and errno is set to ERANGE.

unsigned long strtoul(const char *s, char **endp, int base)
strtoul is the same as strtol except that the result is unsigned long and the error value is ULONG_MAX.

int rand(void)
rand returns a pseudo-random integer in the range 0 to RAND_MAX, which is at least 32767.

void srand(unsigned int seed)
srand uses seed as the seed for a new sequence of pseudo-random numbers. The initial seed is 1.

void *calloc(size_t nobj, size_t size)
calloc returns a pointer to space for an array of nobj objects, each of size size, or NULL if the request cannot be satisfied. The space is initialized to zero bytes.

void *malloc(size_t size)
malloc returns a pointer to space for an object of size size, or NULL if the request cannot be satisfied. The space is uninitialized.

void *realloc(void *p, size_t size)
realloc changes the size of the object pointed to by p to size. The contents will be unchanged up to the minimum of the old and new sizes. If the new size is larger, the new space is uninitialized. realloc returns a pointer to the new space, or NULL if the request cannot be satisfied, in which case *p is unchanged.

void free(void *p)
free deallocates the space pointed to by p; it does nothing if p is NULL. p must be a pointer to space previously allocated by calloc, malloc, or realloc.

void abort(void)
abort causes the program to terminate abnormally, as if by raise(SIGABRT).

void exit(int status)
exit causes normal program termination. atexit functions are called in reverse order of registration, open files are flushed, open streams are closed, and control is returned to the environment. How status is returned to the environment is implementation-dependent, but zero is taken as successful termination. The values EXIT_SUCCESS and EXIT_FAILURE may also be used.

int atexit(void (*fcn)(void))
atexit registers the function fcn to be called when the program terminates normally; it returns non-zero if the registration cannot be made.

int system(const char *s)
system passes the string s to the environment for execution. If s is NULL, system returns non-zero if there is a command processor. If s is not NULL, the return value is implementation-dependent.

char *getenv(const char *name)
getenv returns the environment string associated with name, or NULL if no string exists. Details are implementation-dependent.
void *bsearch(const void *key, const void *base,
              size_t n, size_t size,
              int (*cmp)(const void *keyval, const void *datum))

bsearch searches base[0]...base[n-1] for an item that matches *key. The function cmp must return negative if its first argument (the search key) is less than its second (a table entry), zero if equal, and positive if greater. Items in the array base must be in ascending order. bsearch returns a pointer to a matching item, or NULL if none exists.
void qsort(void *base, size_t n, size_t size,
           int (*cmp)(const void *, const void *))

qsort sorts into ascending order an array base[0]...base[n-1] of objects of size size. The comparison function cmp is as in bsearch.

int abs(int n)
abs returns the absolute value of its int argument.

long labs(long n)
labs returns the absolute value of its long argument.

div_t div(int num, int denom)
div computes the quotient and remainder of num/denom. The results are stored in the int members quot and rem of a structure of type div_t.

ldiv_t ldiv(long num, long denom)
ldiv computes the quotient and remainder of num/denom. The results are stored in the long members quot and rem of a structure of type ldiv_t.

论坛徽章:
0
15 [报告]
发表于 2006-03-30 04:17 |只看该作者
原帖由 hbrown 于 2006-3-28 16:07 发表
其实用一个示例就可以了.

fun1()
{
char *p1="aabbbcc";
char p2[20],p3[20];

strcpy(p2,"aabbcc");   //正确的
strcpy(p2,p1);   //正确的
strcpy(p3,p2);  //正确的
strcpy(p1 ...



char *p1="aabbbcc";
这种写法系统中一般认为是字符串常量只是const省掉了,所以是不推荐strcpy(p1,....)
又的系统甚至编译时就出错,有的运行时即使copy不越界系统也会core掉(好像IBM机器会这样,大家可以验证一下)

论坛徽章:
0
16 [报告]
发表于 2006-03-30 09:27 |只看该作者
我能理解,可我说不太明白
楼上老兄们说了那么多。。。。
数组是有限度的一段内存,字符串是以\0结尾的一段内存,而其类型并不重要了。
这样应该可以理解数组和字符串的区别了?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP