C ++命名参数,如C#

时间:2017-02-17 16:20:29

标签: c# c++

在C#的更高版本中,有named arguments的概念,例如:

static int CalculateBMI(int weight, int height)
{
    return (weight * 703) / (height * height);
}
. . .
var a = CalculateBMI(weight:100, height:60);

C ++中是否存在这样的概念,如果存在,它是如何使用的?

到目前为止研究: Kernighan& Ritche,“C编程语言”第2版(好吧,我知道它是C,但仍然是一个很好的起点)
C++.com search
google search
搜索

0 个答案:

没有答案