更简洁的代码示例

时间:2015-07-14 10:07:01

标签: c#

有没有更简洁的写作方式?

articleCount += 1;
if (articleCount > 4)
{
    // Reset counter to 1
    articleCount = 1;
}

2 个答案:

答案 0 :(得分:6)

是:

if (++articleCount > 4) articleCount = 1;

答案 1 :(得分:6)

对于那些喜欢数学难题不可读代码的人,以下内容也适用:

articleCount = (articleCount % 4) + 1;