游戏开发论坛

 找回密码
 立即注册
搜索
查看: 10787|回复: 5

???????????10???

[复制链接]

1万

主题

1万

帖子

3万

积分

论坛元老

Rank: 8Rank: 8

积分
36572
发表于 2015-5-6 15:03:46 | 显示全部楼层 |阅读模式
??????????????????????????????????????????????????????????????????? ?

1429779736832913.jpg

??1.????????

??????????????????????????????????????????????????????????????????????bug??????????????????????????????????????????????????????????????????????????????lambda????????????

  1. /// <summary>
  2. /// Some function with partially duplicated code
  3. /// </summary>
  4. void OriginalA()
  5. {
  6.         DoThingsA();

  7.         // unique code

  8.         DoThingsB();
  9. }

  10. /// <summary>
  11. /// Another function with partially duplicated code
  12. /// </summary>
  13. void OriginalB()
  14. {
  15.         DoThingsA();

  16.         // unique code

  17.         DoThingsB();
  18. }
复制代码

?????????????????????????????????

  1. /// <summary>
  2. /// Encapsulate shared functionality
  3. /// </summary>
  4. /// <param name="action">User defined action</param>
  5. void UniqueWrapper(Action action)
  6. {
  7.         DoThingsA();

  8.         action();

  9.         DoThingsB();
  10. }

  11. /// <summary>
  12. /// New implmentation of A
  13. /// </summary>
  14. void NewA()
  15. {
  16.         UniqueWrapper(() =>
  17.         {
  18.                 // unique code
  19.         });
  20. }

  21. /// <summary>
  22. /// New implementation of B
  23. /// </summary>
  24. void NewB()
  25. {
  26.         UniqueWrapper(() =>
  27.         {
  28.                 // unique code
  29.         });
  30. }
复制代码

??2.??????

??????????Facebook?Twitter???????????????????????????????????????????????5??????????????????????????????

??3.???????

?????????????????bug?????????????????????????????????????????????????????????????????????????

??4.???????

????????????????????????????????????????????????????????????????????????????????????????????????????????????null????????????????????????????????????

??5.????

?????????????????????????????????????????????????????????????????????????????????????????????????????

??6.????

?????????????????????????????????????????????????????

  1. if (numMines > 0)
  2. {
  3.    enabled=true;
  4. }
  5. else
  6. {
  7.    enabled=false;
  8. }
复制代码

????????????

  1. enabled = numMines > 0;
复制代码

???????????????????????????????????????????????????????????????????

??7.?????????

????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????

  1. static public double GetConvexPolygonArea(Vector2[] vertices)
  2. {
  3.         double area = 0;
  4.         for (int i = 0; i < vertices.Length; i++)
  5.         {
  6.                 Vector2 P0 = vertices[i];
  7.                 Vector2 P1 = vertices[(i + 1) % vertices.Length];

  8.                 area += P0.Wedge(P1);
  9.         }

  10.         return area / 2;
  11. }
复制代码

??8.?????????

????????????????????????????????????????????????????????????????????????????????????????????????????????

  1. void DamagePlayer(Player player, int damageAmount)
  2. {
  3.         if (!player.m_IsInvincible && !player.m_IsDead)
  4.         {
  5.                 player.InflictDamage( damageAmount );
  6.         }
  7. }
复制代码

??????????????????????????????????????????????

??9.???????????

????????????????????????????????????????????????????????????????????????????????????bug??????????????????????????????

??10.???

??????????????????????????????????????????????????????????????????????????????????????????????

??11.??????

???????????????????????????????????????????????????????????????????????????????bug?

????????????????????10??????11??????????

??????????????????????????

??????????

???????????????????????

?????

5

主题

26

帖子

57

积分

注册会员

Rank: 2

积分
57
发表于 2015-5-6 16:19:00 | 显示全部楼层
1.LZ????????????
2.????11????????????????????????"??????????"??????????????

13

主题

36

帖子

301

积分

中级会员

Rank: 3Rank: 3

积分
301
发表于 2015-5-15 10:33:24 | 显示全部楼层
ayuest ??? 2015-5-6 16:19
1.LZ????????????
2.????11????????????????????????"??? ...

??????????

1

主题

15

帖子

123

积分

注册会员

Rank: 2

积分
123
发表于 2015-5-19 18:43:14 | 显示全部楼层
??? ??? 2015-5-15 10:33
??????????

???????????

5

主题

26

帖子

57

积分

注册会员

Rank: 2

积分
57
发表于 2015-5-21 09:20:31 | 显示全部楼层
?????,????????????????

0

主题

3

帖子

8

积分

新手上路

Rank: 1

积分
8
发表于 2016-3-7 17:38:24 | 显示全部楼层
???????
????11????????
??????????????????????????????????????
???????????????????????????
??????????????????????????????

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

作品发布|文章投稿|广告合作|关于本站|游戏开发论坛 ( 闽ICP备17032699号-3 )

GMT+8, 2025-11-20 15:52

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表