11
按返回类型重载
我在这里读了一些关于此主题的问题,这似乎令我感到困惑。我刚刚开始学习C ++,还没有研究模板或运算符重载等。 现在有一种简单的过载方法 class My { public: int get(int); char get(int); } 没有模板或奇怪的行为?还是我应该 class My { public: int get_int(int); char get_char(int); } ?
80
c++
overloading