黑马程序员技术交流社区

标题: 为什么FullLevel的值还是为5? [打印本页]

作者: 苟于伟    时间: 2013-5-17 11:46
标题: 为什么FullLevel的值还是为5?
本帖最后由 苟于伟 于 2013-5-17 11:49 编辑
  1. namespace ConsoleApplication1
  2. {
  3.     class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             Pr r1 = new Pr();         
  8.             r1.Eat(5);         
  9.            Console.WriteLine(r1.FullLevel);
  10.             Console.ReadKey();
  11.         }
  12. class Pr {   
  13.          public int FullLevel { get; set;
  14.          public void Eat(int foodCount)
  15.             {
  16.                 if (FullLevel > 100)
  17.                 {
  18.                     return;
  19.                 }
  20.                 FullLevel = FullLevel + foodCount;//按理说FullLevel的应该为10  
  21. }
  22.         }
  23.     }
  24. }
复制代码
当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