#include <iostream>
using namespace std;
class Person{
public:
Person(int age, int height):m_height(height)
{
this->m_age = age;
}
int get_age_value() const
{
return m_age;
}
int get_height_value() const
{
m_height = 190;
return m_height;
}
int get_value()
{
return m_height;
}
private:
int m_age;
mutable int m_height;
};
void test1()
{
Person per(20, 166);
cout<<"age:"<<per.get_age_value()<<endl;
cout<<"height:"<<per.get_height_value()<<endl;
const Person per1(30, 150);
cout<<"age:"<<per1.get_age_value()<<endl;
cout<<"height:"<<per1.get_height_value()<<endl;}
int main()
{
test1();
return 0;
}