C++ //练习 18.14 假设下面的operator*声明的是嵌套的命名空间mathLib::MatrixLib的一个成员:

C++ Primer(第5版) 练习 18.14

练习 18.14 假设下面的operator*声明的是嵌套的命名空间mathLib::MatrixLib的一个成员:

cpp 复制代码
namespace mathLIb{
	namespace MatrixLib{
		class matrix { /* ... */ };
		matrix operator*(const matrix &, const matrix &);
		// ...
	}
}

请问你应该如何在全局作用域中声明该运算符?

环境:Linux Ubuntu(云服务器)
工具:vim
解释
cpp 复制代码
namespace mathLIb{
	namespace MatrixLib{
		class matrix { /* ... */ };
		matrix operator*(const matrix &, const matrix &);
		// ...
	}
}

mathLib::MatrixLib::matrix mathlib::MatrixLib::operator*(const matrix &, const matrix &);
相关推荐
止观止8 分钟前
C++20 Concepts:让模板错误信息不再“天书”
c++·c++20·编程技巧·模板编程·concepts
e***749511 分钟前
Modbus报文详解
服务器·开发语言·php
lly20240612 分钟前
ASP 发送电子邮件详解
开发语言
小徐敲java12 分钟前
python使用s7协议与plc进行数据通讯(HslCommunication模拟)
开发语言·python
likuolei13 分钟前
XSL-FO 软件
java·开发语言·前端·数据库
6***379414 分钟前
PHP在电商中的BigCommerce
开发语言·php
Dev7z16 分钟前
基于Matlab的多制式条形码识别与图形界面(GUI)系统设计与实现
开发语言·matlab
合作小小程序员小小店16 分钟前
桌面开发,在线%信息管理%系统,基于vs2022,c#,winform,sql server数据。
开发语言·数据库·sql·microsoft·c#
FL162386312917 分钟前
ONNX RuntimeC++ 静态库下载安装和使用教程
开发语言·c++
星释18 分钟前
Rust 练习册 95:React与响应式编程
开发语言·react.js·rust