I got frustated with my other question. So i wrote up this example.

In C the below is true. See demo

int main()
{
printf("%d", 1 && 2);
return 0;
}

Output:

1

In C#. It is FALSE. WHY is this false? Also i dont understand why i needed to create the bool operator in this example but not the one in my other question but no matter. Why is the below false? it makes no sense to me.

BTW the logic making the below false is described here

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            MyInt a=1, b=2;
            bool res=a && b;
            Console.WriteLine("result is {0}", res);
        }

        class MyInt
        {
            public int val;
            public static bool operator true(MyInt t) { return t.val != 0; }
            public static bool operator false(MyInt t) { return t.val == 0; }
            public static MyInt operator &(MyInt l, MyInt r) { return l.val & r.val; }
            public static MyInt operator |(MyInt l, MyInt r) { return l.val | r.val; }
            public static implicit operator MyInt(int v) { return new MyInt() { val = v }; }
            public static implicit operator bool(MyInt t) { return t.val != 0; }
        }
    }
}
link|improve this question

74% accept rate
8  
If you want to code in C, code in C. If you want to code in C++, code in C++. If you want to code in C# code in C#. But you can't assume that these languages are interchangeable. You will have the most success if your code according to the rules of the language you are writing rather than coding to the rules of some other language. – David Heffernan Mar 5 '11 at 12:48
2  
common convention should always trump every other aspect - if 1 has always been true, and 0 always been false, a language that does things differently should be criticised for it. Us poor humans only remember so much and we make mistakes, so changing conventions just makes mistakes more likely. – gbjbaanb Mar 5 '11 at 14:39
@gbjbaanb: Exactly and if its going to change at least tell us the reasoning behind it so we can take advantage of why it changed. Which is what i was trying to ask (three times. Almost no one got it). This (the why reason) is why i liked CodeInChaos answer in another question stackoverflow.com/questions/5203498/… – acidzombie24 Mar 5 '11 at 14:43
@gbjbaanb: 0 remains false and 1 remains true for the MyInt class above if the & and | operators are implemented correctly, as I specify below. The language doesn't "do things differently," at least not in the way you seem to imply. It just uses & and | as non-short-circuiting Boolean operators when the operands aren't integers. – Jollymorphic Mar 5 '11 at 18:52
@gbjbaanb: 1 has not always been true in all languages... sometimes -1 has been, e.g. in VB (all bits set to 1 in an int). – Eric J. Mar 6 '11 at 17:38
show 3 more comments
feedback

4 Answers

up vote 20 down vote accepted

In C there is no bool. Convention is that 0 is false and != 0 is true. if statement treated conditional expression result exactly that way.

In C++ bool was introduced. But it was compatible with old rules, 0 treated as false and false as 0, and there was implicit conversion between int and bool.

In C# it is not the same way: there is bool and int and they are not convertible to eachother. That is what C# Standard says. Period.

So when you tried to reimplement bool and int compatibility you made a mistake. You use && which is logical operator, but in C# you can't override it and only &, which is implemented as bitwise. 1 & 2 == 0 == false! here it is!

You even should not overload bitwise ones, to maintain compatibility you just have to leave operator true and false.

This code works as you expect:

class Programx
{
    static void Main(string[] args)
    {
        MyInt a = 1, b = 2;
        bool res = a && b;
        Console.WriteLine("result is {0}", res);
    }

    class MyInt
    {
        public int val;
        public static bool operator true(MyInt t)
        {
            return t.val != 0;
        }
        public static bool operator false(MyInt t)
        {
            return t.val == 0;
        }
        public static implicit operator MyInt(int v)
        {
            return new MyInt() { val = v };
        }
        public static implicit operator bool(MyInt t)
        {
            return t.val != 0;
        }
    }
}

result is True

link|improve this answer
I always assumed int was not implicitly cast to bool to avoid accidental if/while/for problems. If i wrote this the result is true var b1 = Convert.ToBoolean(a.val); var b2 = Convert.ToBoolean(b.val); Console.WriteLine("result is {0}", b1&&b2);. Why doesnt C# do boolean AND the way C does. Why is the boolean and logic the way it is? – acidzombie24 Mar 5 '11 at 12:28
1  
In C there was no bool until 1999. – Mike Seymour Mar 5 '11 at 12:31
@acidzombie24 take a look at edit – Andrey Mar 5 '11 at 12:41
1  
Even today processors work with these instructions. The abstraction of having a bool different from int doesn't cost any performance, but makes the language cleaner. Just like there is no difference between a pointer and an integer as far as the processor is concerned. But it still makes sense to separate those in a language. It's the usual case that if you are too familiar with something you are blind to alternatives, even if the alternative is better. Unfortunately that happens to all of us more often than we'd like. – CodeInChaos Mar 5 '11 at 14:01
1  
You're not giving up any cycles at runtime. And the pascal compilers of the same era had that exact feature – CodeInChaos Mar 5 '11 at 19:31
show 10 more comments
feedback

Your implementations of operator& and operator| are wrong. These binary operators have bitwise meanings when applied to integral types, and when applied to either Boolean types or classes that have their own & and | operators, they have logical AND and OR semantics (being the non-short-circuiting cousins of && and ||). Correct implementations would look as follows:

operator &(MyInt l, MyInt r) {return l.val != 0 && r.val != 0);}
operator |(MyInt l, MyInt r) {return l.val != 0 || r.val != 0);}
link|improve this answer
WTF!?! So... & is either logical or short circuited logical? not Boolean logical? (maybe i am saying this wrong but i think you know what i mean?) – acidzombie24 Mar 5 '11 at 12:30
And the bottom line is you simply cannot make an integer type in C# that supports bitwise operations to that integer with the & and | operator and at the same time overload true/false to provide a logical truth test. – nos Mar 5 '11 at 12:30
2  
@acidzombie24: I'm afraid I don't get what you mean by the distinction. & and |, when supported as user-defined operators on a class, do double duty supporting both the non-short-circuiting logical (i.e., Boolean) & and | operations and the short-circuiting logical (i.e., Boolean) && and || operations. They are not intended to support bitwise (i.e., binary mathematical) operations. – Jollymorphic Mar 5 '11 at 12:34
3  
@acid && isn't a short circuit bitwise on any reasonable type. The core of your problem is the misunderstanding that & means bitwise and in C#. It doesn't. It means non short-circuiting and. – CodeInChaos Mar 5 '11 at 12:48
1  
And the problem with your type isn't the incorrect implementation of & it is the incorrect implementation of true and false. Those operators should not exist on a non logical type. See my answer to your old question on why these operators are designed like this in C#. – CodeInChaos Mar 5 '11 at 12:49
show 3 more comments
feedback

I'll try and make this simple, since I think people are overcomplicating this.

var x = 1 & 2;
// behind the scenes: 0001 AND 0010 = 0000
Console.Write(x); // 0, as shown above

Integers can NOT be used as booleans in C#. The result of:

if (1 && 2) // compile error
var x = 1 && 2; // compile error

There is no point to asking why an Integer can not be used as a boolean in C#, it just can't. The type system does not allow it. If one were to implement their own Integer class, they could provide implicit conversions from their type to bool, but int does not do this. You also have to make a choice when overloading; do you want bitwise behaviour, or logical behaviour. You can not have both.

Some languages allow 0, "", [] as 'falsey' values. C# does not. Get over it, and use a bool if you're doing boolean logic. If all else fails, Convert.ToBoolean on an int will return true for all non-zero values.

link|improve this answer
feedback
public static MyInt operator &(MyInt l, MyInt r) { return l.val & r.val; }

If I read the linked article correctly, res = a && b will be "expanded" to:

MyInt.false(a) ? a : MyInt.&(a, b)

MyInt.false(a) is false, so evaluates to:

MyInt.&(a, b)

which "expands" to:

a.val & b.val

which is (1 & 2) == 0, and thus false.

link|improve this answer
Yes i knew that since the beginning thus why i asked my other question. My question is WHY ON EARTH is it doing this!?! – acidzombie24 Mar 5 '11 at 12:34
What part is annoying you? (1&2) == 0? – Mat Mar 5 '11 at 12:36
1  
@acidzombie24 Why not? Imagine you come to C/C++ from Pascal do you start with: #define Begin { #define End } ? Or you'll read language reference and use new rules? – Nick Martyshchenko Mar 5 '11 at 12:36
@Mat: The fact that bool 1 is true and bool 2 is true but 1&&2 is not. – acidzombie24 Mar 5 '11 at 12:38
@Nick: Well, if && is logical and not boolean then why even bother to short circuit it? and if its suppose to be like C (since much of the syntax is similar) why even have the && or make it not boolean like C does. I dont understand its use if its suppose to do a logical and. – acidzombie24 Mar 5 '11 at 12:40
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

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