BZ易风

导航

 

1.相同的作用域

2.有默认参数时,要注意避免二义性问题

void func(int a, int b = 20)
{
}

void func(int a )
{
}

void test()
{
    func(20);    //error 不知道调用哪个
}

 

posted on 2021-08-13 12:29  BZ易风  阅读(35)  评论(0编辑  收藏  举报