开发者

How does this .NET code work?

this code is part of N开发者_JAVA技巧Builder. I'm having a bad day .. and to prove it, I don't understand what this (simple) code is trying to do.

Here are the answers, with the code after it.

GetRandom.Phrase(5) == null or et or ut or do or elit or amet.. 
                       (nothing over 4 characters)
GetRandom.Phrase(4) == null or sit or sed or do .. 
                       (nothing over 3 characters)
GetRandom.Phrase(3) == null or et or ut or do  (nothing over 2 characters)
GetRandom.Phrase(2) == null 
GetRandom.Phrase(1) == null 

and the code...

private static readonly string[] latinWords = { "lorem", "ipsum", "dolor", 
    "sit", "amet", "consectetur", "adipisicing", "elit", "sed", "do",
    "eiusmod", "tempor", "incididunt", "ut", "labore", "et", "dolore",
    "magna", "aliqua" };

public virtual string Phrase(int length)
{
    var count = latinWords.Length;
    var result = string.Empty;
    var done = false;
    while (!done)
    {
        var word = latinWords[Next(0, count - 1)];
        if (result.Length + word.Length + 1 > length)
        {
            done = true;
        }
        else
        {
            result += word + " ";
        }
    }
    return result.Trim();
}

I would have thought that the method should return x number of phrases or a random phrase of at least the length specified?


The code returns a random phrase less than or equal to the length specified, in characters. The key is this line:

if (result.Length + word.Length + 1 > length)

This guarantees that the length in characters of the result (including the newly-added word) doesn't exceed the value of length.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜