先说结论(不一定适用所有环境):

1) GCC默认开启了返回值优化(RVO),除非编译时指定“-fno-elide-constructors”;

2) 现代C++编译器一般都支持返回值优化;

3) string的拷贝构造和拷贝赋值是浅拷贝。

测试环境:

1) gcc (GCC) 4.8.5

2) g++ (GCC) 4.8.5

3) libstdc++.so.6.0.19

注:g++默认开启了返回值优化,

使用“-O0”不能关闭编译器的返回值优化,

而应使用“-fno-elide-constructors”关闭返回值优化。

测试代码:

#include <stdio.h>

#include <string>

// 借助mystring来观察构造、析构和赋值行为

class mystring: public std::string {

public:

mystring();

~mystring();

mystring(const mystring& oth); // 拷贝构造

mystring(const char* str);

mystring& operator =(const mystring& oth); // 拷贝赋值

};

mystring::mystring() {

fprintf(stdout, "mystring::ctor\n");

}

mystring::~mystring() {

fprintf(stdout, "mystring::dtor\n");

}

mystring::mystring(const mystring& oth) {

fprintf(stdout, "mystring::ctor(copy)\n");

this->assign(oth.c_str());

}

mystring::mystring(const char* str) {

fprintf(stdout, "mystring::ctor(char*)\n");

this->assign(str);

}

mystring& mystring::operator =(const mystring& oth) {

fprintf(stdout, "mystring::operator =\n");

this->assign(oth.c_str());

}

mystring foo() {

mystring str("12345678"); // 调用构造函数mystring(char*)

return str; // 返回临时对象str

}

int main() {

{

{

mystring str1 = foo();

fprintf(stdout, "%s\n", str1.c_str());

}

fprintf(stdout, "\n");

}

{

{

const mystring& str2 = foo();

fprintf(stdout, "%s\n", str2.c_str());

}

fprintf(stdout, "\n");

}

return 0;

}

普通编译和运行:

$ g++ -g -o x x.cpp

$ ./x

mystring::ctor(char*)

12345678

mystring::dtor

mystring::ctor(char*)

12345678

mystring::dtor

总结:默认情况下,返回值使用对象或const引用效果完全一样。

禁止返回值优化编译和运行:

$ g++ -g -o x x.cpp -fno-elide-constructors

$ ./x

mystring::ctor(char*)

mystring::ctor(copy)

mystring::dtor

mystring::ctor(copy)

mystring::dtor

12345678

mystring::dtor

mystring::ctor(char*)

mystring::ctor(copy)

mystring::dtor

12345678

mystring::dtor

总结:使用const引用比对象方式,少了一次拷贝构造函数调用。

因为string拷贝构造是基于引用计数的浅拷贝,所以赋值的性能很高,细节请参见《https://blog.csdn.net/Aquester/article/details/88555787》。

C++标准库之string返回值研究的更多相关文章

  1. 彻底弄清c标准库中string.h里的常用函数用法

    在我们平常写的c/c++程序,一些算法题中,我们常常会用到c标准库中string.h文件中的函数,这些函数主要用于处理内存,字符串相关操作,是很有用的工具函数.而且有些时候,在笔试或面试中也会出现让你 ...

  2. 谈谈两种标准库类型---string和vector

    两种最重要的标准库---string和vector string和vector是两种最重要的标准库类型,string表示可变长的字符序列,vector存放的是某种给定类型对象的可变长序列. 一.标准库 ...

  3. C++ Primer 第三章 标准库类型string运算

    1. 标准库类型 string string表示可变长的字符序列,使用string必须首先包含string头文件.如何初始化类的对象是由类本身决定的. int n; string s1;//默认初始化 ...

  4. C++ 标准库类型-String,Vector and Bitset

    <C++ Primer 4th>读书摘要 最重要的标准库类型是 string 和 vector,它们分别定义了大小可变的字符串和集合.这些标准库类型是语言组成部分中更基本的那些数据类型(如 ...

  5. 走进C标准库(8)——"string.h"中函数的实现相关字符串操作函数

    我的strcat: char *strcat(char *dest,char *src) { char * reval = dest; while(*dest) dest++; while(*src) ...

  6. 标准库类型string

    定义和初始化string对象 初始化string对象方式: string s1;//默认初始化,s1是一个字符串 string s2(s1);//s2是s1的副本 string s2 = s1;//等 ...

  7. C++标准库之string类型

    stirng类型 简介: C++标准库提供的类型:string 长度可变的字符串 操作简单  仅为包含个人常用函数 头文件 string 类型与其它的标准库类型相同,都需要包含对应的头文件 #incl ...

  8. C++标准库之String

    C++中支持的字符串处理的函数库叫String,但它不是STL,却与STL操作十分相似. 1.声明: 使用String之前要有以下头文件 #include<string> using na ...

  9. Python3标准库:string通用字符串操作

    1. string:通用字符串操作 string模块在很早的Python版本中就有了.以前这个模块中提供的很多函数已经移植为str对象的方法,不过这个模块仍保留了很多有用的常量和类来处理str对象. ...

随机推荐

  1. keepalived添加服务自启动报错分析

    安装完keepalived后设置为服务自启动 将路径为/usr/local/src/keepalived-1.3.4/keepalived/etc/init.d的文件keepalived拷贝到/etc ...

  2. PHP : MySQLi【面向过程】操作数据库【 连接、建库、建表、增、删、改、查、关闭】

    <?php /** *数据库操作关键函数 *mysql_connect:连接数据 *mysql_error:最后一次sql动作错误信息 *mysqli_query:执行sql语句,增删该查 *m ...

  3. python--第十六天总结(bootstrap)

    一. 实现原理 网格布局是通过容器的大小,平均分为12份(可以修改),再调整内外边距,和表格布局有点类似但是也存在区别. 实现步骤如下: (1) 数据行.row 必须包含在容器.container 中 ...

  4. 下拉js的实现

    这个JS是出自一个浴室柜网站 $(document).ready(function(){ $(".side_nav_3").hover(function() { $(this).f ...

  5. poj2886(线段树求序列第k小)

    题目链接:https://vjudge.net/problem/POJ-2886 题意:n个人围成一个圈,每个人有姓名s和权值val两个属性,第一轮序号为k的人退出,并根据其val指定下一个人,val ...

  6. xcode更换启动图显示空白launchImg

    launchImg图片每次更换使用不同名字, 放在项目里面,不要放在 Assets.xcassets 里面,不然会有xcode缓存问题

  7. 正在执行的sql

    //查询目前系统正在运行的sqlSELECT [Spid]=session_Id, [ecid], [Database]=DB_NAME(sp.dbid), [User] = nt_username, ...

  8. 创建ResultUtils类

    1.在pom.xml中增加maven资源 <dependency> <groupId>com.alibaba</groupId> <artifactId> ...

  9. spark2.0源码学习

    [Spark2.0源码学习]-1.概述 [Spark2.0源码学习]-2.一切从脚本说起 [Spark2.0源码学习]-3.Endpoint模型介绍 [Spark2.0源码学习]-4.Master启动 ...

  10. Dynamics AX 中的图片处理

    1.从本地读取图片文件,并判断格式是否附合要求. FilenameFilter filter = [‘Image Files‘,‘*.bmp;*.jpg;*.gif;*.jpeg‘]; BinData ...