编译错误,大家帮我看看。多谢啦!
1.int GetindividualEmpNo();//函数声明
employee::GetindividualEmpNo() //函数实现
{
return GetindividualEmpNo;
}
编译的时候错误提示:'return' : cannot convert from 'int (__thiscall employee::*)(void)' to 'int' 这个有什么问题吗?
2. 定义CommRate为float 但是给float赋值
CommRate=0.05 编译提示 warning C4305: '=' : truncation from 'const double' to 'float' 这个又是什么问题啊?