编程参考 - 在C++移动构造函数声明中使用noexcept

在 C++ 中,noexcept 是用于表示函数不抛出异常的指定符。它既可用于常规函数,也可用于特殊成员函数,包括构造函数和析构函数。使用 noexcept 可以帮助编译器进行优化,提高代码的安全性和正确性。

In C++, noexcept is a specifier used to indicate that a function does not throw exceptions. It can be applied to both regular functions and special member functions, including constructors and destructors. Using noexcept helps the compiler make optimizations and can improve the safety and correctness of the code.

Usage of noexcept

1, Declaring Non-Throwing Functions:

void func() noexcept {

    // Function implementation

}

2, Conditional noexcept:

You can specify that a function is noexcept based on a condition, typically an expression that evaluates to true or false at compile time.

template <typename T>

void func(T t) noexcept(noexcept(t.method())) {

    t.method();

}

In this example, func is declared noexcept if t.method() is noexcept.

3, Move Constructor and Move Assignment Operator:

Declaring move constructors and move assignment operators as noexcept is a common practice, especially if they do not throw exceptions. This allows standard library containers, like std::vector, to use more efficient operations for moving elements.

class MyClass {

public:

    MyClass(MyClass&&) noexcept = default;

    MyClass& operator=(MyClass&&) noexcept = default;

};

Benefits of noexcept

1, Performance:

标记为 noexcept 的函数允许编译器执行某些优化,如内联和减少异常处理的开销。

Functions marked as noexcept can allow the compiler to perform certain optimizations, such as inlining and reducing the overhead of exception handling.

2, Exception Safety:

通过将函数标记为 noexcept,可以保证它们不会抛出异常。这在析构函数、移动操作和代码的关键部分特别有用,因为在这些地方异常会造成问题。

By marking functions as noexcept, you provide a guarantee that they will not throw exceptions. This can be particularly useful in destructors, move operations, and critical sections of code where exceptions would be problematic.

3, Standard Library Interactions:

许多标准库算法和容器都可以利用 noexcept 保证来选择更高效的代码路径。例如,如果移动构造函数是 noexcept 的,std::vector 就可以在重新分配时不会考虑出现异常的风险,从而提高性能。

Many standard library algorithms and containers can take advantage of noexcept guarantees to choose more efficient code paths. For example, if a move constructor is noexcept, std::vector can use it during reallocation without the risk of exceptions, leading to better performance.

Example

Here is a complete example demonstrating the use of noexcept:

#include <iostream>

#include <vector>

class MyClass {

public:

    MyClass() {

        // Constructor

    }

    ~MyClass() {

        // Destructor

    }

    // Copy constructor

    MyClass(const MyClass&) {

        // Copy logic

    }

    // Move constructor (noexcept)

    MyClass(MyClass&&) noexcept {

        // Move logic

    }

    // Copy assignment operator

    MyClass& operator=(const MyClass&) {

        // Copy assignment logic

        return *this;

    }

    // Move assignment operator (noexcept)

    MyClass& operator=(MyClass&&) noexcept {

        // Move assignment logic

        return *this;

    }

    void display() const noexcept {

        std::cout << "MyClass instance" << std::endl;

    }

};

int main() {

    std::vector<MyClass> vec;

    vec.push_back(MyClass());  // Uses move constructor

    MyClass obj;

    obj.display();  // Calls noexcept function

    return 0;

}

In this example:

  • MyClass 的移动构造函数和移动赋值运算符被标记为 noexcept。

  • 显示函数被标记为 noexcept,因为它不会抛出任何异常。

  • std::vector 可以根据 MyClass 的 noexcept 移动构造函数和移动赋值操作符优化其操作。

  • The move constructor and move assignment operator of MyClass are marked as noexcept.

  • The display function is marked as noexcept because it does not throw any exceptions.

  • The std::vector can optimize its operations based on the noexcept move constructor and move assignment operator of MyClass.

std::vector::push_back在处理临时对象时使用移动构造函数,前提是移动构造函数标记为 noexcept。

The std::vector class has different overloads of the push_back function:

* One that takes a const T& (copy constructor).

* One that takes a T&& (move constructor).

void push_back(const T& value); // For copy

void push_back(T&& value);      // For move

std::vector::push_back uses the move constructor when dealing with a temporary object, provided the move constructor is marked noexcept. The compiler will prefer the rvalue reference overload (push_back(T&&)), which uses the move constructor.

Why Move Constructor is Used

* 临时对象: 临时对象(rvalues)是移动操作的理想候选对象,因为它们即将被销毁,因此其资源可以被 "移动 "而不是复制。

* 效率高: 移动通常比复制更有效率,特别是对于管理动态内存或其他资源的对象。

* 标准库要求: 标准库中的容器(如 std::vector)在可用和 noexcept 时都会使用 move 构造函数。

* Temporary Objects: Temporary objects (rvalues) are ideal candidates for move operations because they are about to be destroyed, and thus their resources can be "moved" rather than copied.

* Efficiency: Moving is typically more efficient than copying, especially for objects that manage dynamic memory or other resources.

* Standard Library Requirements: The standard library containers (like std::vector) are designed to use the move constructor when available and when it is noexcept.

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/45392.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

设计模式的七项原则

文章目录 设计模式的七项原则单一职责原则接口隔离原则依赖倒置里氏替换原则开闭原则迪米特法则复用合成原则 设计模式的七项原则 分别为 单一职责原则接口隔离原则依赖倒置里氏替换原则开闭原则迪米特法则复用合成原则 单一职责原则 一个类负责一个职责&#xff0c;不可以…

解决configure: error: Unexpected output of ‘arch‘ on OSX

最近很好高兴用上了新版的macbook&#xff08;芯片&#xff1a;Apple M3 Pro&#xff0c;操作系统&#xff1a;14.3&#xff09;。 不高兴的是遇到了不兼容的问题。所以选型还是成熟的技术是关键。 电脑里用pyenv 工具管理多个版本的python。 命令&#xff1a;pyenv install x…

FX110网:香港证监会对Yomaex等多家虚拟资产交易平台发出警告

近日&#xff0c;香港证券及期货事务监察委员会&#xff08;香港证监会&#xff0c;SFC&#xff09;对虚拟资产交易平台Yomaex发出警告&#xff0c;运营网址为yomaexd.com.该平台曾多次被FX110网发文曝光。相关阅读 《Yomaex平台“高额回报”是“高级陷阱”&#xff0c;公务员也…

Mybatis-plus乐观锁的实现

第一步&#xff1a;在springboot启动类 的拦截器中添加乐观锁Bean public MybatisPlusInterceptor plusInterceptor(){MybatisPlusInterceptor mybatisPlusInterceptor new MybatisPlusInterceptor();//分页插件mybatisPlusInterceptor.addInnerInterceptor(new PaginationInn…

Java中Timer定时器的使用

定时器Timer 概述&#xff1a;开发中&#xff0c;有时候我们会需要一些周期性的操作&#xff0c;每隔一段时间去做一件事&#xff0c;在Java中可以通过Timer定时器去实现。Timer是一种工具&#xff0c;线程用其安排以后在后台线程中执行的任务。可安排任务执行一次&#xff0c…

Java Redis多限流

在Java中实现Redis多限流通常涉及使用Redis的某些特性&#xff0c;如INCR、EXPIRE、Lua脚本或者更高级的Redis数据结构如Redis Bitmaps、Redis Streams结合Redis Pub/Sub&#xff0c;或者使用Redis的第三方库如Redis Rate Limiter&#xff08;基于Lua脚本或Redis自身功能实现&a…

解决WSL2突然没网络问题

解决WSL2突然没网络问题 在使用Windows Subsystem for Linux&#xff08;WSL&#xff09;时&#xff0c;有时可能会遇到网络连接问题。以下步骤可以帮助你解决这些问题。 一、启动命令提示符&#xff08;cmd&#xff09; 1. 关闭WSL 在开始任何网络配置前&#xff0c;先关闭…

Oracle11g_RAC for vmware workstation 安装教程(on suse11)

一、前言 本文介绍在vmware workstation环境下&#xff0c;基于suse11sp1操作系统安装Oracle11g RACASM 数据库&#xff08;两节点&#xff09;。 1.1 RAC中的基本概念 安装ORACLE RACASM前&#xff0c;您可能需要事先简要的了解RAC&#xff0c;CRS&#xff0c;ASM的概念。 1.1…

easyExcel 不规则模板导入数据

文章目录 前言一、需求和效果二、难点和思路三、全部代码踩坑 前言 之前分享的 EasyExcel 批量导入并校验数据&#xff0c;仅支持规则excel&#xff0c;即首行表头&#xff0c;下面对应数据&#xff0c;无合并单元格情况。 本篇主要解决问题&#xff1a; 模板excel 表头不在首…

【python】 对上市银行的年报信息进行语义挖掘,计算各银行年报中与金融科技有关的关键词的词向量的余弦相似性,衡量银行的金融科技发展程度。

目录 引言 文本预处理 数据收集 ​编辑​编辑 文本清洗 词向量的训练 Word2Vec 的两种主要模型 Word2Vec 的工作原理 训练过程 Word2Vec 的应用 训练模型 建立银行应用金融科技的关键词词库 关键词 计算余弦相似度 统计关键词词频 引言 随着金融科技的迅猛发展&a…

在Linux系统,高效管理Python数据采集程序!

在当今数字化时代&#xff0c;数据的获取和处理变得至关重要。Python 凭借其强大的功能和丰富的库&#xff0c;成为了数据采集的热门选择。而 Linux 系统以其稳定性和高效性&#xff0c;为 Python 数据采集程序的运行提供了理想的环境。 一、Anaconda 的安装 Anaconda 是一个包…

react多级组件间如何传递props

1.使用props属性一级级传递 针对父&#xff0c;子&#xff0c;孙子&#xff0c;如何实现将props从父级传递给孙子。 父&#xff1a; <ParentComponent parent{this} /> //传递this子&#xff1a; <childComponent propsContext{this.props.parent} />孙子&#x…

前端面试题54(断点续传讲解)

断点续传是一种在上传或下载大文件时&#xff0c;如果因为网络问题中断&#xff0c;可以从已经上传或下载的部分继续&#xff0c;而不是重新开始的技术。这对于提高用户体验和节省带宽非常有帮助。下面我将分别从HTTP协议层面、前端实现思路以及一个简单的前端实现示例来讲解断…

【代码随想录算法训练营第六十五天|卡码网94.城市间货物运输IIIIII】

文章目录 94.城市间货物运输ISPFA(bellman_ford队列优化)Bellman_ford判断负权回路 96.城市间货物运输IIIBellman_ford 94.城市间货物运输I SPFA(bellman_ford队列优化) 在bellman_ford的基础上&#xff0c;在每次松弛的时候&#xff0c;只有和前面的结点相连的边的松弛才是有…

linux权限深度解析——探索原理

前言&#xff1a;本节内容主要讲述的是linux权限相关的内容&#xff0c; linux的权限如果使用root账号是感受不到的&#xff0c; 所以我们要使用普通账号对本节相关内容进行学习&#xff0c;以及一些实验的测试。 然后&#xff0c; 通过linux权限的学习我们可以知道为什么有时候…

合合TextIn - 大模型加速器

TextIn是合合信息旗下的智能文档处理平台&#xff0c;在智能文字识别领域深耕17年&#xff0c;致力于图像处理、模式识别、神经网络、深度学习、STR、NLP、知识图谱等人工智能领域研究。凭借行业领先的技术实力&#xff0c;为扫描全能王、名片全能王等智能文字识别产品提供强大…

使用GPT-4和ChatGPT构建应用项目

文章目录 项目1:构建新闻稿生成器项目2:YouTube视频摘要项目3:打造《塞尔达传说:旷野之息》专家项目4:语音控制项目1:构建新闻稿生成器 GPT-4和ChatGPT等LLM专用于生成文本。我们可以使用GPT-4和ChatGPT在各种场景中生成文本,举例如下。 电子邮件合同或正式文档创意写作…

SpringBoot相关

SpringBoot 1. what springboot也是spring公司开发的一款框架。为了简化spring项目的初始化搭建的。 spring项目搭建的缺点&#xff1a; 配置麻烦依赖繁多tomcat启动慢 2 .springboot的特点(why) 自动配置 springboot的自动配置是一个运行时(更准确地说&#xff0c;是应用程…

关于斯坦福TTT,大家难道没啥可唠的嘛~?

TTT与transformer也好或manba也好它们之间背后的本质思想&#xff0c;表面上来看是对上下文进行状态表征压缩&#xff0c;再细想来看&#xff0c;均是一种对输入自身结构的一种线性建模变换&#xff0c;不过三者间所采用线性建模方法和策略各有不同和优劣&#xff0c;而TTT在这…

加载预训练后的深度网络,使用pytorch框架

用 PyTorch 框架加载预训练模型并进行预测的过程包括以下几个步骤&#xff1a;加载模型、进行图像预处理、进行前向传播以及处理预测结果。以下是一个完整的示例&#xff0c;展示了如何使用预训练的 ResNet50 模型在一张图像上进行预测。 import torch from torchvision impor…