当前位置 : 主页 > 编程语言 > c++ >

c – 使用内联重载运算符

来源:互联网 收集:自由互联 发布时间:2021-06-23
我重载了运算符用于矩阵输出. std::ostream operator (std::ostream os, const Tic b){ for (int i = 0; i b.rows; i++) { for (int j = 0; j b.cols; j++) os std::setw(5) b.board[i][j] " "; os '\n'; } return os;} 另外,我创建了一个
我重载了运算符<<用于矩阵输出.

std::ostream& operator << (std::ostream& os, const Tic& b)
{
    for (int i = 0; i < b.rows; i++)
    {
        for (int j = 0; j < b.cols; j++)
            os << std::setw(5) << b.board[i][j] << " ";
        os << '\n';
    }
    return os;
}

另外,我创建了一个小型打印功能.

inline void print_matrix (const Matrix& _obj)
{
    cout << _obj;
}

Can I use inline for print_matrix function?

Will inline be used for overloaded operator, or does the compiler
apply this only for cout and only then will call << as another
function?

如果我正确理解您的问题,您想知道是否内联

inline void print_matrix (const Matrix& _obj)
{
    cout << _obj;
}

也导致调用<<由编译器内联. 问题是:你的前提是错误的.很久以前就引入了inline来控制编译器内联的函数.然而,随着时间的推移,事实证明编译器在决定内联比人类更好的方面要好得多.因此,内联只是对编译器的一个暗示,它的唯一实际用例仍然是告诉链接器,当你在头文件中定义的函数使用内联时,它会找到函数的多个定义.有关详细信息,另请参见here.

TL; DR:上面的内联函数甚至没有告诉你print_matrix是否内联.如果你想知道编译器真正内联的内容,我建议你使用这个工具:https://godbolt.org/

网友评论