C++基础问题求助
#include <iostream>using namespace std;
class Line
{
public:
void setLength( double len );
double getLength( void );
Line(double len); // 这是构造函数
private:
double length;
};
// 成员函数定义,包括构造函数
Line::Line( double len)
{
cout << "Object is being created, length = " << len << endl;
length = len;
}
void Line::setLength( double len )
{
length = len;
}
double Line::getLength( void )
{
return length;
}
// 程序的主函数
int main( )
{
Line line(10.0);
// 获取默认设置的长度
cout << "Length of line : " << line.getLength() <<endl;
// 再次设置长度
line.setLength(6.0);
cout << "Length of line : " << line.getLength() <<endl;
return 0;
}
当上面的代码被编译和执行时,它会产生下列结果:
Object is being created, length = 10
Length of line : 10
Length of line : 6
请问以上代码中 Line line(10.0)
10.0 是仅仅赋值给 构造函数吗?如果是的话 当把构造函数中的lenth=len 中的lenth随机修改成另一个变量名后,显示结果如下
Object is being created, length = 100000
Length of line : 2.07323e-317
Length of line : 6
请问这里的 第2行的2.07323e-317是如何得到的?