vote up 6 vote down star
1

What is the purpose and effect of the true and false operators in C#? The official documentation on these is hopelessly non-explanatory.

flag

71% accept rate
What if both 'true' and 'false' operators return true? – alex Mar 26 at 16:32
@alex: then expect interesting result. – Richard Mar 26 at 16:35
@alex, I don't think the false operation is actually used when determining true/false when being evaluated. I'll see if I can confirm. – Samuel Mar 27 at 2:29
Never mind, it is called when determining if it can short circuit &&. – Samuel Mar 27 at 2:47
@Samuel, it might also be used elsewhere to optimise calling the 'not' operator on the result of the 'true' operator. This is, however, just a guess. – ProfK Mar 27 at 14:38

5 Answers

vote up 3 vote down check

The true and false operators can be overloaded, to allow a class to represent its own state as true or false, for example:

public class MyClass
{
    //...
    public static bool operator true(MyClass op)
    {
        // Evaluation code...
    }

    public static bool operator false(MyClass op)
    {
        // Evaluation code...
    }
}

And you will be able to use the operator in boolean expressions:

MyClass test = new MyClass(4, 3);
if (test)
    Console.WriteLine("Something true");
else
    Console.WriteLine("Something false");

string text = test ? "Returned true" : "Returned false";
link|flag
What if both 'true' and 'false' operators return true? – alex Mar 26 at 16:30
@alex, in the absence of checks for false in the above example from CMS, I would expect nothing unseemly. – ProfK Mar 26 at 20:16
vote up 8 vote down

You would overload the true or false operators if you were defining a specialized boolean value. This is not typically needed, however, which is why they don't seem useful. For example, in a fuzzy-logic boolean class, you might have something like this:

// Represents a boolean that can store truth values in a range from [0, 1], with
//   a value of one indicating complete metaphysical certitude and a value of
//   zero indicating complete impossibility.
public class FuzzyBoolean {
// ...
   public static bool operator true(FuzzyBoolean fb) {
      return fb.TruthValue > 0;
   }

   public static bool operator false(FuzzyBoolean fb) {
      return fb.TruthValue == 0;
   }
// ...
}

Note that if you overload true, you must also overload false (and vice versa).

Of course, there are also the true and false literals, the two literal values you can assign to a boolean instance. Don't confuse these with the operators mentioned above. A more substantial example of how you'd use this, involving booleans in a database, is given in the MSDN docs here.

link|flag
This seems like a very contrived example. I would see the use of something like this for objects having an OK and a bad state - say a file object could return true if it was in a readable state, allowing one to write a C like 'if (file) { /* do something */ }` construct. – Ori Pessach Mar 26 at 16:21
@Ori: IMO, that's a terrible idea. A file is not a boolean and should not be used as such. If you want to check if it's in a good state, that should be a boolean method: "file.IsValid()" or something similar. – John Feminella Mar 26 at 16:23
Neither are FuzzyBooleans, whatever you name them. Using various things as booleans is idiomatic in certain languages. It might not be in C#, but given the extensive facilities to support casting to boolean I suspect that something like that was intended, rather than the ability to define – Ori Pessach Mar 26 at 16:45
a new boolean type, which I suspect would be pretty rare. – Ori Pessach Mar 26 at 16:46
My point was that the distance between a FuzzyBoolean and a boolean is much tinier than the distance between the distance between a file and a boolean. C# doesn't prevent you from making implicit conversions to your heart's content; I'm just saying I don't think it's necessarily a great idea. – John Feminella Mar 26 at 16:54
show 10 more comments
vote up 0 vote down

The allow you to use a custom type as a part of logic operations; For example, as part of an if or while statement.

link|flag
vote up 2 vote down

They allow you to overload them using the operator overloading syntax so that a type you define can be interpreted as a boolean.

link|flag
vote up 4 vote down

See the referenced example in the article

C# Language Specification -- Database boolean type

Essentially these operators allow an instance of a type to be used in boolean conditional logic such as && and ||.

link|flag

Your Answer

Get an OpenID
or

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