Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

c# Can someone explain this boolean logic

// Example bool is true
bool t = true;

// Convert bool to int
int i = t ? 1 : 0;
Console.WriteLine(i); // 1

This converts false to 0 and true to 1, can someone explain to me how the t ? 1 : 0 works?

like image 444
Tom Gullen Avatar asked Sep 07 '10 09:09

Tom Gullen


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.


2 Answers

Look at the Ternary Operator.

int i = t ? 1 : 0;

Equates to:

if(t)
{
    i = 1;
}
else
{
    i = 0;
}

This syntax can be found in a variety of languages, even javascript.

Think of it like an English sentence if you swap the colon for "otherwise":

bool isItRaining = false;
int layersOfClothing = isItRaining? 2 otherwise 1;
like image 133
joshcomley Avatar answered Sep 22 '22 08:09

joshcomley


It's the C# Conditional Operator.

i = does t == true? if yes, then assign 1, otherwise assign 0.

Can also be written as:

if (t == true)
   t = 1;
else 
   t = 0;

or

if (t)
  t = 1;
else
  t = 0;

Since t is true, it prints 1.

like image 25
RPM1984 Avatar answered Sep 22 '22 08:09

RPM1984