vote up 0 vote down star

hi , i have little problem with if

{
    string nom;
    string ou;
    nom = "1";
    if (nom == "1")
    {
        nom +=1;
        ou = nom;
    }
    Console.Write(ou);
}

but i cant print ou value i dont know why

flag

33% accept rate
Not an articulate question in my opinion. Code is weird with no explanation -- why do "x += 1" on a string? – dbkk Jun 23 at 13:45

7 Answers

vote up 0 vote down check

Another option is to set ou in an else:

if (nom == "1")
{
    nom +=1;
    ou = nom;
} else 
{
    ou = "blank value";
}
link|flag
vote up 5 vote down

Does this even compile?

nom is a string - how can you do nom += 1?

link|flag
4  
The same way string foo = "User id=" + 10; works. The result is "User id=10". Here, nom would be "11". That might not be the expected result, admittedly... – Jon Skeet Feb 25 at 10:59
1 will be converted to string before concatenation. it's equal to nom += 1.ToString() – abatishchev Feb 25 at 11:27
Well I never! I'm really surprised the compiler lets you do that... – teedyay Feb 25 at 11:50
vote up 5 vote down

Try replacing the second line with

string ou = null;

The problem is that if nom turns out not to equal "1", the variable ou won't have been initialized. The compiler here wants to guarantee that ou has been assigned a value.

link|flag
vote up 3 vote down

This snippet won't even compile, let alone printing ou. C# enforces all variables to be initialized before accessing, which is not always true in your case. Thus changing

string ou;

to, say:

string ou = "";

will do just fine.

link|flag
To whoever downvoted this: what exactly don't you agree with? – Anton Gogolev Feb 25 at 13:53
I did not downvote it, but my issue with it is the ="", it should be = String.Empty for readability reasons mostly. – Alex May 4 at 19:54
vote up 3 vote down

This is because ou is unassigned outside the scope of the if block. Change the declaration line to string ou = string.Empty; and it shoudl work.

link|flag
vote up 10 vote down

Try something like this

{
    string nom;
    string ou = String.Empty;
    nom = "1";
    if (nom == "1")
    {
        nom +=1;
        ou = nom;
    }
    Console.Write(ou);
}
link|flag
vote up 7 vote down

C# compiler requires the variables to be definitely initialized before use.

Definite initialization is a compile-time thing, it doesn't consider runtime values of variables.

However, if the variable nom was explicitly definied as const, the compiler would be sure that it would not change at runtime and the if statement block would run and the variable ou would be definitely assigned to.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.