gpt4 book ai didi

c++ - 为什么 C++ 不支持命名参数?

转载 作者:IT老高 更新时间:2023-10-28 22:03:00 33 4
gpt4 key购买 nike

以前,我使用 Python。在 Python 中,我使用命名参数(关键字参数)进行函数调用。关于 named parameters 的维基百科页面告诉 C++ 不支持它。为什么 C++ 不支持命名参数?它会在 C++ 标准的 future 版本中支持它吗?

最佳答案

Why doesn't C++ support named parameters?

因为标准中还没有引入这样的功能。该功能在 C 中也不存在(也不存在),而这正是 C++ 最初的基础。

Will it support it in a future version of the C++ standard?

A proposal是为此而写的。但是这个提议被拒绝了。

C++ 的一个基本问题是函数声明中的参数名称不重要,并且下面的程序定义良好:

void foo(int x, int y);
void foo(int y, int x); // re-declaration of the same function
void foo(int, int); // parameter names are optional
void foo(int a, int b) {} // definition of the same function

如果语言中引入了命名参数,那么这里会传递哪些参数?

foo(x=42, b=42);

命名参数需要显着不同且向后不兼容的参数传递系统。


您可以使用类类型的单个参数来模拟命名参数:

struct args {
int a = 42;
float b = 3.14;
};

void foo(args);

// usage
args a{};
a.b = 10.1;
foo(a);
// or in C++20
foo({.b = 10.1});

关于c++ - 为什么 C++ 不支持命名参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38076786/

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