c++函数忽略某个参数
作者:互联网
需求
对于某些函数我们希望再传入多余参数时不做处理
同时我们也不希望不报错,提高兼容性
代码
例如对2D点传入3D坐标进行构造
/**
* @brief constructor take x, y, z as parameters where z is nonsense.
*
* @note it enables the templated assignment in terms of Point3T
*
* @param x x value
* @param y y value
*/
Point2T(ScalarType const x, ScalarType const y, ScalarType const /*z*/) noexcept;
标签:const,函数,传入,value,忽略,c++,ScalarType,某个,param 来源: https://www.cnblogs.com/azureology/p/15946048.html