在临时对象上调用成员函数时生成警告

Generating a warning when a member function is invoked on a temporary object(在临时对象上调用成员函数时生成警告)
本文介绍了在临时对象上调用成员函数时生成警告的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

给定矩阵模板类mat<M,N,T>,下面的成员函数允许我高效地转置行向量或列向量,因为它们具有相同/相应的内存占用:

template<int M, int N=M, typename T = double>
struct mat {
    // ...
    template<int Md = M, int Nd = N, typename = std::enable_if_t<Md == 1 || Nd == 1>>
    const mat<N, M, T>& transposedView() const {
        static_assert(M == 1 || N == 1, "transposedView() supports only vectors, not general matrices.");
        return *reinterpret_cast<const mat<N, M, T>*>(this);
    }
}

我多年来一直使用此函数,出于习惯,开始在临时表达式(/*vector-valued expression*/).transposedView()上调用它,忘了它会返回对临时表达式的引用,导致未定义的行为,GCC就是这样咬我的。

是否有简单的方法可以添加在临时调用时会生成某种警告的内容?

或者,只要我不存储引用,在临时上调用它实际上就应该是安全的吗?

推荐答案

成员函数可以是qualified for lvalue or rvalue objects。使用它,您可以创建一个重载集,如

template<int M, int N=M, typename T = double>
struct mat {
    // ...
    template<int Md = M, int Nd = N, typename = std::enable_if_t<Md == 1 || Nd == 1>>
    const mat<N, M, T>& transposedView() & const {
        static_assert(M == 1 || N == 1, "transposedView() supports only vectors, not general matrices.");
        return *reinterpret_cast<const mat<N, M, T>*>(this);
    }
    template<int Md = M, int Nd = N, typename = std::enable_if_t<Md == 1 || Nd == 1>>
    const mat<N, M, T>& transposedView() && const = delete;
}

现在,如果尝试使用rvalue对象调用函数,将出现编译器错误。

这篇关于在临时对象上调用成员函数时生成警告的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

windeployqt doesn#39;t deploy qwindowsd.dll for a debug application(windeployqt不会为调试应用程序部署qwindowsd.dll)
QLineEdit: Show a processed text, not the entered one, but keep it (custom echo mode)(QLineEdit:显示已处理的文本,而不是输入的文本,但保留它(自定义回显模式))
Showing tooltip in a Qt chart with multiple y axes(在带有多个y轴的Qt图表中显示工具提示)
QTableView, how to change dragging multiple items display(QTableView,如何更改拖动多项显示)
How can I build Qt 5.13.2 with GCC 11.1 on Windows?(如何在Windows上用GCC 11.1构建Qt 5.13.2?)
singleton template as base class in C++(C++中作为基类的Singleton模板)