gpt4 book ai didi

c++ - 这是重命名和重新包含 std::unique_ptr 的好习惯吗?

转载 作者:太空宇宙 更新时间:2023-11-04 15:06:08 26 4
gpt4 key购买 nike

代码如下

// in ptr.h
#pragma once
#include <memory>
template<class T> using Ptr = std::unique_ptr<T>;

所以每次我使用 std::unique_ptr 时,我都会包含“ptr.h”并将其用作 Ptr。这是一个好的做法吗?

最佳答案

这种事情只会损害可读性。一般 C++ 程序员在了解您的 Ptr 概念之前就知道什么是 unique_ptr 的可能性更高。此外,我可以用谷歌搜索前者而不是后者。

关于c++ - 这是重命名和重新包含 std::unique_ptr 的好习惯吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14638626/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com