前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >蓝桥ROS机器人之现代C++学习笔记2.6 面向对象

蓝桥ROS机器人之现代C++学习笔记2.6 面向对象

作者头像
zhangrelay
发布2022-04-29 19:37:04
2310
发布2022-04-29 19:37:04
举报
文章被收录于专栏:机器人课程与技术
  1. 委托构造
  2. 继承构造
  3. 显式虚函数重载
  4. 显式禁用默认函数
  5. 强类型枚举
代码语言:javascript
复制
#include <iostream>
#include <string>
class Base {
public:
    std::string str;
    int value;
    Base() = delete;
    Base(std::string s) {
        str = s;
    }
    
    // delegate constructor
    Base(std::string s, int v) : Base(s) {
        value = v;
    }
    
    // final constructor
    virtual void foo() final {
        return;
    }
    virtual void foo(int v) {
        value = v;
    }
};
class Subclass final : public Base {
public:
    double floating;
    Subclass() = delete;
    
    // inherit constructor
    Subclass(double f, int v, std::string s) : Base(s, v) {
        floating = f;
    }
    
    // explifict constructor
    virtual void foo(int v) override {
        std::cout << v << std::endl;
        value = v;
    }
};  // legal final

// class Subclass2 : Subclass {
// };  // illegal, Subclass has final
// class Subclass3 : Base {
//    void foo(); // illegal, foo has final
// }

int main() {
    // Subclass oops; // illegal, default constructor has deleted
    Subclass s(1.2, 3, "abc");
    
    s.foo(1);
    
    std::cout << s.floating << std::endl;
    std::cout << s.value << std::endl;
    std::cout << s.str << std::endl;
}
代码语言:javascript
复制
#include <iostream>
template<typename T>
std::ostream& operator<<(typename std::enable_if<std::is_enum<T>::value, std::ostream>::type& stream, const T& e)
{
    return stream << static_cast<typename std::underlying_type<T>::type>(e);
}

// there will be compile error if all define value1 \u548c value2
enum Left {
    left_value1 = 1,
    left_value2
};
enum Right {
    right_value1 = 1,
    right_value2
};

enum class new_enum : unsigned int{
    value1,
    value2,
    value3 = 100,
    value4 = 100
};

int main() {
    
    if (Left::left_value1 == Right::right_value2) {
        std::cout << "Left::value1 == Right::value2" << std::endl;
    }
    
    // compile error
    // if(new_enum::left_value1 == 1) {
    //     std::cout << "true!" << std::endl;
    // }
    if (new_enum::value3 == new_enum::value4) {
        std::cout << "new_enum::value3 == new_enum::value4" << std::endl;
    }
    
    std::cout << new_enum::value3 << std::endl;
    
    
    return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022-04-02,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档