为了账号安全,请及时绑定邮箱和手机立即绑定

请问一下在C++里string如何定义函数?

请问一下在C++里string如何定义函数?

素胚勾勒不出你 2019-07-24 15:11:37
C++里string如何定义函数?
查看完整描述

3 回答

?
噜噜哒

TA贡献1784条经验 获得超7个赞

#include<iostream>#include<string> std::string exchange(std::string x, std::string y){    return y + x;}template<class T>void  _swap(T& a, T&  b){    T c;    c = a;    a = b;    b = c;}int main(){    std::string a = "world";    std::string b = "hello";      std::cout<< a << "  "<< b<<std::endl;     _swap<std::string>(a,b);     std::cout<< a << "  "<< b<<std::endl;}

程序输出

==================

world  hello
hello  world

==================

你的函数出错了,主要检查三个地方

  1. 是否引入了相关的头文件 比如 #include<string>

  2. 是否用using 引入了命名空间或者在使用的地方使用了命名空间,比如using std::string 或using namespace std 来引入命名空间,或者在代码中使用 std::string

  3. 你是函数是否有正确的返回值,或者函数内部有错误。如果仅仅是声名,那么不要用花括号。



查看完整回答
反对 回复 2019-07-29
  • 3 回答
  • 0 关注
  • 1123 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信