Last Updated: 2023-05-16 09:37:23 Tuesday
-- TOC --
C++可以给函数接口的参数设置默认值!
比如,我们可以定义一个这样的接口:
void func(int a, int b=2, int c=3);
此时b和c都有默认值,因此在调用的时候,可以:
func(1); // only a
func(1,5); // a and b
func(1,5,9); // a, b and c
关于C++函数接口参数默认值的几个重要规则:
本文链接:https://cs.pynote.net/sf/c/cpp/202210121/
-- EOF --
-- MORE --