黑马程序员技术交流社区
标题:
为什么FullLevel的值还是为5?
[打印本页]
作者:
苟于伟
时间:
2013-5-17 11:46
标题:
为什么FullLevel的值还是为5?
本帖最后由 苟于伟 于 2013-5-17 11:49 编辑
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Pr r1 = new Pr();
r1.Eat(5);
Console.WriteLine(r1.FullLevel);
Console.ReadKey();
}
class Pr {
public int FullLevel { get; set;
public void Eat(int foodCount)
{
if (FullLevel > 100)
{
return;
}
FullLevel = FullLevel + foodCount;//按理说FullLevel的应该为10
}
}
}
}
复制代码
当Eat将5这个值传进来时,FullLevel为5 , foodCount也为5,可为什么 FullLevel + foodCount得到的新值还是5呢?应该是10才对呀!
作者:
陈行
时间:
2013-5-17 13:16
你的方法没有返回值 虽然FullLevel + foodCount=10 但是只是在该方法里为十 没有返回 所以输出还是5 后面加一句 return FullLevel ; 就是10了
作者:
林东枫
时间:
2013-5-17 13:21
调用Eat方法时你并没有把5赋给变量FullLervel,而是把5赋给foolCount,所以这时fulllervel为0,
在后面FullLervel = fullLevel+foodCount; 此时计算表达式后fulllervel才等于5.
作者:
陈行
时间:
2013-5-17 14:59
c15881291595 发表于 2013-5-17 13:25
请问FullLevel + foodCount=10 如何得来
我错了。。。
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2