类的hello,world

来源:互联网 发布:python 2.7.x下载官网 编辑:程序博客网 时间:2024/06/01 10:18

写类的hello,world程序 如下

#include <iostream>using namespace std;#include <string.h>class A{    protected:    string a;    public:        A(){                a ="hello,world";        }        string  get_a(){            return a;        }};class B : public A{};int main(){        B b;        cout<<b.get_a()<<endl;;}


0 0
原创粉丝点击