网站首页 站内搜索

搜索结果

查询Tags标签: objInt,共有 1条记录
  • 015 看上去好坑的运算符重载

    #include <iostream> using namespace std; class MyInt { int nVal; public: MyInt( int n) { nVal = n ;} MyInt& operator- (int n) {nVal -= n;return *this;}operator int() {return nVal;} }; int Inc(int n) {return n + 1; } int main () { int n;wh…

    2022/2/19 23:42:43 人评论 次浏览
扫一扫关注最新编程教程