本文介绍了为什么默认参数是尾随的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
为什么C ++中的默认参数是尾随的?
解决方案 a = 0,int b); ,你如何指定在调用这个函数时使用默认参数?
why default arguments in C++ are trailing ones ?
解决方案
if you had void func(int a = 0, int b);, how would you specify to use the default parameter in calling this function?
这篇关于为什么默认参数是尾随的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
07-16 15:53