c语言中string是什么意思啊?控制什么的啊

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言中string是什么意思啊?控制什么的啊相关的知识,希望对你有一定的参考价值。

参考技术A

编程语言中的字符串,用双引号引起来的几个字符.如"Abc","一天"。String类是不可变(final)的,对String类的任何改变,都是返回一个新的String类对象。

这样的话把String类的引用传递给一个方法,该方法对String的任何改变,对原引用指向的对象没有任何影响,这一点和基本数据类型相似。

strings1,s2;

s1="abc";

s2=s1;

s2="def";

1、用法

string类的构造函数:

string(constchar*s);//用c字符串s初始化string(intn,charc);//用n个字符c初始化

此外,string类还支持默认构造函数和复制构造函数,如strings1;strings2="hello";都是正确的写法。当构造的string太长而无法表达时会抛出length_error异常。

2、string类的字符操作:

constchar&operator[](intn)const;constchar&at(intn)const;char&operator[](intn);char&at(intn);

operator[]和at()均返回当前字符串中第n个字符的位置,但at函数提供范围检查,当越界时会抛出out_of_range异常,下标运算符[]不提供检查访问。

constchar*data()const;//返回一个非null终止的c字符数组constchar*c_str()const;//返回一个以null终止的c字符串

intcopy(char*s,intn,intpos=0)const;//把当前串中以pos开始的n个字符拷贝到以s为起始位置的字符数组中,返回实际拷贝的数目。

扩展资料:

1、string的特性描述:

intcapacity()const;//返回当前容量(即string中不必增加内存即可存放的元素个数)

intmax_size()const;//返回string对象中可存放的最大字符串的长度

intsize()const;//返回当前字符串的大小

intlength()const;//返回当前字符串的长度 

boolempty()const;//当前字符串是否为空 

voidresize(intlen,charc);//把字符串当前大小置为len,并用字符c填充不足的部分

2、string类的输入输出操作:

string类重载运算符operator>>用于输入,同样重载运算符operator<<用于输出操作。函数getline(istream&in,string&s);用于从输入流in中读取字符串到s中,以换行符'\\n'分开。

3、string的赋值:

string&operator=(conststring&s);//把字符串s赋给当前字符串

string&assign(constchar*s);//用c类型字符串s赋值

string&assign(constchar*s,intn);//用c字符串s开始的n个字符赋值

string&assign(conststring&s);//把字符串s赋给当前字符串

string&assign(intn,charc);//用n个字符c赋值给当前字符串

string&assign(conststring&s,intstart,intn);//把字符串s中从start开始的n个字符赋给当前字符

string&assign(const_iteratorfirst,const_itertorlast);//把first和last迭代器之间的部分赋给字符串

4、string的连接:

string&operator+=(conststring&s);//把字符串s连接到当前字符串的结尾

string&append(constchar*s);//把c类型字符串s连接到当前字符串结尾

string&append(constchar*s,intn);//把c类型字符串s的前n个字符连接到当前字符串结尾

string&append(conststring&s);//同operator+=()

string&append(conststring&s,intpos,intn);//把字符串s中从pos开始的n个字符连接到当前字符串的结尾

string&append(intn,charc);//在当前字符串结尾添加n个字符c

string&append(const_iteratorfirst,const_iteratorlast);//把迭代器first和last之间的部分连接到当前字符串的结尾

5、string的子串:

stringsubstr(intpos=0,intn=npos)const;//返回pos开始的n个字符组成的字符串

6、string的交换:

voidswap(string&s2);//交换当前字符串与s2的值

7、string类的查找函数:

intfind(charc,intpos=0)const;//从pos开始查找字符c在当前字符串的位置

intfind(constchar*s,intpos=0)const;//从pos开始查找字符串s在当前串中的位置

intfind(constchar*s,intpos,intn)const;//从pos开始查找字符串s中前n个字符在当前串中的位置

intfind(conststring&s,intpos=0)const;//从pos开始查找字符串s在当前串中的位置//查找成功时返回所在位置,失败返回string::npos的值

intrfind(charc,intpos=npos)const;//从pos开始从后向前查找字符c在当前串中的位置

intrfind(constchar*s,intpos=npos)const;

intrfind(constchar*s,intpos,intn=npos)const;

intrfind(conststring&s,intpos=npos)const;//从pos开始从后向前查找字符串s中前n个字符组成的字符串在当前串中的位置,成功返回所在位置,失败时返回string::npos的值

intfind_first_of(charc,intpos=0)const;//从pos开始查找字符c第一次出现的位置

intfind_first_of(constchar*s,intpos=0)const;

intfind_first_of(constchar*s,intpos,intn)const;

intfind_first_of(conststring&s,intpos=0)const;//从pos开始查找当前串中第一个在s的前n个字符组成的数组里的字符的位置。查找失败返回string::npos

intfind_first_not_of(charc,intpos=0)const;

intfind_first_not_of(constchar*s,intpos=0)const;

intfind_first_not_of(constchar*s,intpos,intn)const;

intfind_first_not_of(conststring&s,intpos=0)const;//从当前串中查找第一个不在串s中的字符出现的位置,失败返回string::npos

intfind_last_of(charc,intpos=npos)const;

intfind_last_of(constchar*s,intpos=npos)const;

intfind_last_of(constchar*s,intpos,intn=npos)const;

intfind_last_of(conststring&s,intpos=npos)const;

intfind_last_not_of(charc,intpos=npos)const;

intfind_last_not_of(constchar*s,intpos=npos)const;

intfind_last_not_of(constchar*s,intpos,intn)const;

intfind_last_not_of(conststring&s,intpos=npos)const;//find_last_of和find_last_not_of与find_first_of和find_first_not_of相似,只不过是从后向前查找。

string类的替换函数:

string&replace(intp0,intn0,constchar*s);//删除从p0开始的n0个字符,然后在p0处插入串s

string&replace(intp0,intn0,constchar*s,intn);//删除p0开始的n0个字符,然后在p0处插入字符串s的前n个字符

string&replace(intp0,intn0,conststring&s);//删除从p0开始的n0个字符,然后在p0处插入串s

string&replace(intp0,intn0,conststring&s,intpos,intn);//删除p0开始的n0个字符,然后在p0处插入串s中从pos开始的n个字符

string&replace(intp0,intn0,intn,charc);//删除p0开始的n0个字符,然后在p0处插入n个字符c

string&replace(iteratorfirst0,iteratorlast0,constchar*s);//把[first0,last0)之间的部分替换为字符串s

string&replace(iteratorfirst0,iteratorlast0,constchar*s,intn);//把[first0,last0)之间的部分替换为s的前n个字符。

string&replace(iteratorfirst0,iteratorlast0,conststring&s);//把[first0,last0)之间的部分替换为串s

string&replace(iteratorfirst0,iteratorlast0,intn,charc);//把[first0,last0)之间的部分替换为n个字符c

string&replace(iteratorfirst0,iteratorlast0,const_iteratorfirst,const_iteratorlast);//把[first0,last0)之间的部分替换成[first,last)之间的字符串。

string类的插入函数:

string&insert(intp0,constchar*s);

string&insert(intp0,constchar*s,intn);

string&insert(intp0,conststring&s);

string&insert(intp0,conststring&s,intpos,intn);//前4个函数在p0位置插入字符串s中pos开始的前n个字符

string&insert(intp0,intn,charc);//此函数在p0处插入n个字符c

iteratorinsert(iteratorit,charc);//在it处插入字符c,返回插入后迭代器的位置

voidinsert(iteratorit,const_iteratorfirst,const_iteratorlast);//在it处插入[first,last)之间的字符

voidinsert(iteratorit,intn,charc);//在it处插入n个字符c

string类的删除函数

iteratorerase(iteratorfirst,iteratorlast);//删除[first,last)之间的所有字符,返回删除后迭代器的位置。

iteratorerase(iteratorit);//删除it指向的字符,返回删除后迭代器的位置。

string&erase(intpos=0,intn=npos);//删除pos开始的n个字符,返回修改后的字符串。

string类的迭代器处理:

string类提供了向前和向后遍历的迭代器iterator,迭代器提供了访问各个字符的语法,类似于指针操作,迭代器不检查范围。

用string::iterator或string::const_iterator声明迭代器变量,const_iterator不允许改变迭代的内容。常用迭代器函数有:

const_iteratorbegin()const;iteratorbegin();//返回string的起始位置

const_iteratorend()const;iteratorend();//返回string的最后一个字符后面的位置

const_iteratorrbegin()const;iteratorrbegin();//返回string的最后一个字符的位置

const_iteratorrend()const;iteratorrend();//返回string第一个字符位置的前面

rbegin和rend用于从后向前的迭代访问,通过设置迭代器string::reverse_iterator或string::const_reverse_iterator实现

字符串流处理:

通过定义ostringstream和istringstream变量实现,在#include<sstream>头文件中。

例如:

stringinput("hello,thisisatest");

istringstreamis(input); 

strings1,s2,s3,s4;

is>>s1>>s2>>s3>>s4;//s1="hello,this",s2="is",s3="a",s4="test"

ostringstreamos;

os<<s1<<s2<<s3<<s4;

cout<<os.str();

参考资料:

百度百科——string

请问C语言中while(!x)的(!x)是啥意思啊?

--x的意bai思是x=x-1;!是逻辑非运du算,!(--x)是循环条件

while(!(--x));

表示当x=x-1运算后,如果x=0那么因为非运算,那么x不等于0,循环继续;

如果x=x-1运算后,如果x不等于0,则!(--x)=0,结束循环

在C里,非0为“逻辑真”,用1表示,0是“逻辑假”;所以!x==0实质就是x!=0的意思。所以,while(!x==0)等效于while(x!=0),即当x不等于0时继续循环,一直循环到x变为0时结束。

扩展资料:

运算符优先级指定了两个表达式绑定得有多“紧密”。例如,表达式 1 + 5 * 3 的结果是 16 而不是 18 是因为乘号(“*”)的优先级比加号(“+”)高。必要时可以用括号来强制改变优先级。例如:(1 + 5) * 3 的值为 18。如果运算符优先级相同,则使用从左到右的左联顺序。

$a = 3 * 3 % 5; // (3 * 3) % 5 = 4$a = true ? 0 : true ? 1 : 2; // (true ? 0 : true) ? 1 : 2 = 2$a = 1;$b = 2;$a = $b += 3; // $a = ($b += 3) -> $a = 5, $b = 5

?> 使用括号可以增强代码的可读性。

注:尽管 ! 比 = 的优先级高,php 仍旧允许类似如下的表达式:if (!$a = foo()),在此例中 foo() 的输出被赋给了 $a。

参考资料来源:百度百科-运算符

参考技术A !是“逻辑非”操作符,所以!x就是给x取反。在C里,非0为“逻辑真”,用1表示,0是“逻辑假”;所以!x==0实质就是x!=0的意思。所以,while(!x==0)等效于while(x!=0),即当x不等于0时继续循环,一直循环到x变为0时结束。 参考技术B 回答

亲,您好,我正在为您查询相关信息,请您耐心等待一下,会在六分钟之内回复您,不要着急哦

您好,第一个程序中,一共有两个while,是循环的嵌套,外循环是do……while语句,循环体只有一句,也就是一个while语句,这一句形成一个完整的循环,由于它在循环的内部,所以也叫内循环。\\x09int x=0,y=6; \\x09do \\x09while(--y)x++; \\x09while(y--); 看一下它的运行过程:先赋值x=0,y=6执行do循环运行while(--y),先计算--y,自减后y=5,满足循环条件;执行x++,自增后x=1回到 while(--y),先计算--y,自减后y=4,满足循环条件;执行x++,自增后x=2再回到 while(--y),先计算--y,自减后y=3,满足循环条件;执行x++,自增后x=3第四次回到 while(--y),先计算--y,自减后y=2,满足循环条件;执行x++,自增后x=4第五次回到 while(--y),先计算--y,自减后y=1,满足循环条件;执行x++,自增后x=5第六次回到 while(--y),先计算--y,自减后y=0,不满足循环条件;接下来执行while(y--),先判断后自减,因为这时y=0,停止外循环,不回do语句了。自减后y=-1。最后执行打印语句:printf("%d,%d\\n",x,y); ,因为这时x=5,y=-1,打印出最终程序运行结果为5,-1 。这就是两个while的作用。

希望我的回答对您有所帮助喔,如果有问题没解答可以留言或者再次咨询,我会竭尽全力帮助到您。

参考技术C x是一个变量·~
(条件判断时,非0值为真,0值为假)
当x为非0值(也就是说不是0的时候),!x为假 (因为x为真,所以!x为假)

相反,x为0的时候,!x为真

总的来说while中的x为0才执行while中的循环体
参考技术D x==0
while(x) 和while(x!=0)一个意思
while(!x)和 while(x==0)一个意思
希望对你有所帮助,不懂可以追问哦~追问

这种情况下都表示==0吗?为什么这里的!不表示非啊?

追答

恩,对的,在计算机逻辑语言中,0表示错误,1表示正确,!表示非,while(x) 是while(x!=0)的简写,同样while(!x)是 while(x==0)的简写,因为它表示非x!=0,即x==0,错误换句话说,在逻辑语言中,==1意思是正确,==0意思是错误

希望对你有所帮助~

追问

谢谢,明白了。

追答

不客气,昨天没看到~

以上是关于c语言中string是什么意思啊?控制什么的啊的主要内容,如果未能解决你的问题,请参考以下文章

C语言中 For语句后面的括号里有两个分号是啥意思啊?

C语言中学指针时*和&是相互补充的,为啥啊?

C语言中 For语句后面的括号里有两个分号是啥意思啊?

数据库到底是一个啥东西啊?是作啥的啊?

在c语言里a的b次方该怎么表示啊!!

单片机C语言中如何将浮点型变量转换成字符串输出