摘要:本文试着比较c++字符串与C风格字符串,主要讨论的是c++中的字符串的简单操作。1、C风格字符串的主要操作与缺陷;主要操作有: strlen (求长度)、strcpy(复制字符串) 、strcmp(比较字符串大小)、strcat(字符串连接)、strstr(寻找子字符串)C标准库实现:char...
分类:
编程语言 时间:
2014-09-18 01:59:13
阅读次数:
338
字符数组的两种定义方式: char c[10] = {‘i’ , ‘P’ , ‘h’ , ‘o’ , ‘n’ , ‘e’}; char c[10] = “iPhone” ;字符串函数strlen()计算字符串的长度strcpy()字符串拷贝strcat()字符串拼接strcmp(...
分类:
其他好文 时间:
2014-09-14 23:19:37
阅读次数:
225
在C++开发过程中经常会遇到两个比较容易混淆的头文件引用#include 和 #include,两者的主要区别如下:#include是C语言的标准库,主要是对字符串进行操作的库函数,是基于char*进行操作的,例如常见的字符串操作函数stpcpy、strcat都是在该头文件里面声明的。#includ...
分类:
其他好文 时间:
2014-09-10 20:52:21
阅读次数:
156
首先看看代码: 1 #ifndef STRCAT_H 2 #define STRCAT_H 3 4 /******************************************************************* 5 原型:extern char *strcat(char ....
分类:
编程语言 时间:
2014-09-09 10:50:08
阅读次数:
187
问题:字符串拼接 strcat方法1:开辟新空间,存放结果:#include #include #include #include char* _strcat(char* str1, char* str2){ assert(str1 != NULL && str2 != NULL); char*.....
分类:
其他好文 时间:
2014-08-21 20:52:44
阅读次数:
210
写自己的strcat函数------→mycmp 1 #include 2 #include 3 #define N 5 4 5 int mycmp(char *s1, char *s2) 6 { 7 //数组型 8 /* int i = 0; 9 while(s1[i]...
分类:
其他好文 时间:
2014-08-14 23:24:36
阅读次数:
204
一 造成segment fault,产生core dump的可能原因1.内存访问越界a) 由于使用错误的下标,导致数组访问越界b) 搜索字符串时,依靠字符串结束符来判断字符串是否结束,但是字符串没有正常的使用结束符c) 使用strcpy, strcat, sprintf, strcmp, strca...
分类:
其他好文 时间:
2014-08-13 22:00:37
阅读次数:
288
写自己的strcat函数------→mycat 1 #include 2 #include 3 #define N 5 4 5 char *mycat(char *s1, char *s2) 6 { 7 //数组型 8 /* int i = 0; 9 while(s1[...
分类:
其他好文 时间:
2014-08-13 21:46:57
阅读次数:
323
#include
#include
char* strcpy(char* strDest, const char* strSrc)
{
assert((strDest != NULL) && (strSrc != NULL));
char* address = strDest;
while((*strDest++ = *strSrc++) != '\0')
NULL;
r...
分类:
其他好文 时间:
2014-08-12 10:21:03
阅读次数:
198
1、绝对值函数
abs()仅对整型求绝对值
对浮点数求绝对值使用fabs()函数。
2、连接字符串函数-----strcat(a,b)
将字符串b连接在字符串a后面
注意:字符串a的大小要足以容纳a+b
3、
void f(int a)
{
int i,j,k;
for(i=1;i*i
fo...
分类:
其他好文 时间:
2014-08-09 09:08:07
阅读次数:
310