gpt4 book ai didi

c++ - 在 C++ 中从 Python 模拟导入功能

转载 作者:行者123 更新时间:2023-11-28 04:36:04 25 4
gpt4 key购买 nike

在 python 中我可以做到:
from long_and_painful import still_way_to_long as short

在 C++ 中我坚持:

using long::and::painful::stillWayToLong;
... //Code and Stuff
stillWayToLong("Why must I type this so often?");

我是否遗漏了一些可以使它更像 pythonic 的东西?

最佳答案

怎么样

auto x = long::and::painful::stillWayToLong;  // If this is an object/function
x("Why must I type this so often?");


using X = typename long::and::painful::stillWayToLong; // If this is a type.
X bob;

关于c++ - 在 C++ 中从 Python 模拟导入功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51410353/

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