using MyReturnType = std::vector<std::tuple<int32_t, std::string, std::string, std::string>>;在.h文件里写cpp文件能用吗
时间: 2024-02-23 19:54:29 浏览: 65
在.h文件中定义和声明变量是可以的,但是.cpp文件中才能使用和实现这些变量。因此,在.h文件中写下面这行代码是可以的:
```cpp
using MyReturnType = std::vector<std::tuple<int32_t, std::string, std::string, std::string>>;
```
但是,在.cpp文件中才能使用这个类型来定义和初始化变量。
阅读全文