#include <iostream>
using namespace std;

class Line
{
//  公有成员
public:
	double length;
	void setLength(double len);
	double getLength(void);
};

// 成员函数
double Line::getLength(void)
{
	return length;
}

void Line::setLength(double len)
{
	length = len;
}

// 主函数
int main()
{
	Line line;

	// 设置长度
	line.setLength(6.0);
	cout << "Length of line:" << line.getLength() << endl;

	// 不使用成员函数设置长度
	line.length = 10.0;
	cout << "Line of line:" << line.length << endl;

	system("pause");

	return 0;
}