A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 苟于伟 中级黑马   /  2013-5-17 11:46  /  2054 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 苟于伟 于 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才对呀!

评分

参与人数 1技术分 +1 收起 理由
杞文明 + 1

查看全部评分

3 个回复

倒序浏览
你的方法没有返回值  虽然FullLevel + foodCount=10  但是只是在该方法里为十  没有返回  所以输出还是5  后面加一句  return  FullLevel  ; 就是10了
回复 使用道具 举报
调用Eat方法时你并没有把5赋给变量FullLervel,而是把5赋给foolCount,所以这时fulllervel为0,
在后面FullLervel = fullLevel+foodCount; 此时计算表达式后fulllervel才等于5.
回复 使用道具 举报
c15881291595 发表于 2013-5-17 13:25
请问FullLevel + foodCount=10  如何得来

我错了。。。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马