vote up -4 vote down star
1

As an exercise in learning the C# language, I would like to do an integer assignment x=y but then return the bool true.

bool b = (x=y)==y;

This works but its a bit smelly.

Is there a C# operator or casting method that turns an integer into a bool?


This question was just a tool to explore and experiment with the C# language. It was a predicate to my next question which involves another horrible hack.

flag

60% accept rate
19  
What are you trying to accomplish exactly? – JP Apr 28 at 21:49
5  
You aren't going to find an operator to do this, if the assignment operator stops working in C#, you've got bigger problems. – Samuel Apr 28 at 22:03
5  
if the comma operator starts working in C#, you can do bool b = (x=y, true); cheers :) – Johannes Schaub - litb Apr 28 at 22:35
2  
Re: "Don't you hate it..." I really do, so you get +1 from me. Byproducts of trying to solve a "silly" or "impossible" problem can be very interesting. Much more interesting than correct, but boring "best practices" answers. – Constantin Apr 29 at 0:03
4  
The fact that no one here can figure out what you're trying to accomplish is enough to say it shouldn't be a single line. – Will Eddins Apr 29 at 0:20
show 13 more comments

12 Answers

vote up 41 vote down

Do not worry about processor efficiency. Keep it simple:

x=y;
bool b = true;
link|flag
I would like to keep to one expression. – David Smith Apr 28 at 21:53
12  
Why keep it in one expression? It's slightly less clear if you do that (quite convoluted even), and doesn't do justice to the fact that you are performing two different assignments. – Noldorin Apr 28 at 21:56
3  
David, then what you did is the best option - really. There is almost nothing happening in that expression to be optimized or condensed. If you want one expression, it'll be smelly. – Anthony Kanago Apr 28 at 21:56
3  
@David, what you are doing is 2 different things. By putting it all on one line you are creating a problem for the person who will be maintaining your code. Always write your code as if it will be maintained by a homicidal maniac who knows where you live. – Tim Jarvis Apr 28 at 23:15
@tim J - I second that... "Always write your code as if it will be maintained by a homicidal maniac who knows where you live" – madcolor Apr 29 at 13:39
vote up 15 vote down

Just do the assignment and return true:

x = y;
bool b = true;

Don't try to prematurely optimize your code, especially with trivial optimizations like this one. The C# compiler and the CLR is able to do a much better job of optimizing than you could do by hand.

link|flag
1  
To back up what Daniel has said, the compiler generates a shorter CIL method for this code than for the original code. So the OP's given "optimized" code is actually slower than Daniel's straightforward two line approach. – Kevin Apr 29 at 14:19
vote up 5 vote down

Your objective is to make your code as easy to understand as possible, so that you and other programmers can easily understand what it does. Don't worry about making statements extremely compact if it makes them hard to follow, because it doesn't gain you much and you can loose lots of time trying to figure out what it does later. We could write programs on one long line, but we usually don't :D

link|flag
vote up 2 vote down

Just trying to do this is a little bit smelly. (No insult intended.) Better to figure out why you're trying to do this and find a better way.

If nothing else:

bool b = true;
try 
{
   x = y;
} 
catch ()
{
   b = false;
}

It's a little silly (but better than smelly).

link|flag
Er, what is this supposed to do? – Matt Olenik Apr 28 at 22:22
This just assures that b is true so long as your assignation succeeded. It's a slightly longer form of your bool b = (x=y)==y, but with the understanding that assignations should not fail without throwing exceptions. Like I said, kinda silly. – McWafflestix Apr 28 at 22:41
When would an assignment ever fail? – Matt Olenik Apr 29 at 0:22
That's why it's silly; it shouldn't. And that's what your test code was checking; if the assignation of y to b resulted with the value of b being equal to y. – McWafflestix Apr 29 at 0:43
vote up 4 vote down

The smelly thing to me is that you're always returning true.

If there is more context to the code, then disregard this.

Other than that, I agree to just keep it simple and readable.

link|flag
vote up 2 vote down

You cannot do what you think you're doing because in assignment (x=y) returns the value of x after assignment, it doesn't return a comparison of whether or not x = y (a la x == y).

If you want to do this, the choices are split it onto two lines, or do it the way you suggested: bool b = (x = y) == y; which I agree is very smelly.

I assume you're trying to verify if indeed x has been updated to match y, which I can't understand - if you've specified that x = y, then it's fair to assume that x does indeed equal y at this point.

As zvolkov suggested, keep it simple:

int x;
int y = 7;
x = y;
bool b = (x == y); //Verify the change occurred.
link|flag
I'm not trying to verify if x has been updated, just seeing if there is simpler way to do this in one expression. – David Smith Apr 28 at 22:31
What are you trying to achieve using the code? That b is always equal to true? Or that x == y? – BenAlabaster Apr 28 at 22:44
Just between you and me. I was exploring an even more convoluted solution concerning LINQ queries and predicates. The code was just a learning example. I have now simplified the question. Thanks for your input. – David Smith Apr 29 at 4:18
vote up -1 vote down

Assuming that this has a valid reason (and I doubt it does), I'd use:

bool b = (x = y) ? true : true; // assignment & invariant condition intended

This shows we're discarding the value, and will be optimised away by any compiler. The comment is to mitigate the confusion of anyone reading the code.

If x and y are not bools, a method such as:

bool ignoreArgumentReturnTrue<T>(T v) { return true; }

should be optimised appropriately by the JITter. This has the advantage of being self-documenting, but both such techniques would end up on TheDailyWtf, I guarantee.


Wow, unpopular. Is there a problem with this answer, or is it just because (obviously) this code shouldn't be used in a real project? The fact that ints and similar cannot be cast to bools is a conscious decision for C#, and I think it's helpful to explore and appreciate the implications. The code above would compile on C++, Perl, Javascript, for example. Doesn't everyone play around with correctness when starting a new language?

link|flag
2  
-1 This will only compile if x/y are booleans.. in that case, may as well say bool b = (x = y) || true – Daniel LeCheminant Apr 28 at 22:08
ahh, I assumed they were. – Mark Apr 28 at 22:11
I avoided that because putting || true suggests it's a debugging override, not intentional. – Mark Apr 28 at 22:12
vote up -7 vote down

There is no operator or casting thingamajig that turns an integer into a bool in C#.

As an aside, if this line was written into a piece of production code it would be more than smelly, it would stink because it is best to keep your code simple and readable.

link|flag
It is only the best solution if your goal is code obfuscation. – Chris Brandsma Apr 28 at 23:36
I guess you asked the question, so you get to say what the answer is. – mquander Apr 28 at 23:48
I am not writing code. I am learning C#. – David Smith Apr 28 at 23:49
vote up -1 vote down

The only way I can make sense out of this question is if what you're trying to do is test whether or not the given assignment succeeded. In other words,

x = y;  // x and y are both int
bool success = (x == y);

The thing is, in C#, the assignment operator will not fail under any sane operating conditions. So this extra work of checking for success is redundant and serves only to obfuscate the code.

If you are aiming for practical paranoia here, then I prefer McWafflestix's answer, which I will copy-paste below for completeness:

bool b = true;
try 
{
   x = y;
} 
catch ()
{
   b = false;
}

Even this is just extra code that will not do anything, however.

Edit: I just saw balabaster's answer, which already covers this idea. Sorry for being redundant.

link|flag
vote up 0 vote down

You are right your code is smelly. Its smelly for a reason. It smells. That should be a big wake up that it is wrong.

You say you are learning. That is great but you need to listen to those with experience and evaluate the lessons they are trying to teach. You never do two different things in one statement. Think of this as a Simplified Single Responsibility Principle. - that an object should only have one reason to change. What you are trying to do is very bad practice.

Don't get into bad practices as a beginner. You will never be a master. Experienced coders can (and do) break rules from time to time because they know the rules and the consequences of breaking and bending them. Learn the basics.

link|flag
1  
I disagree (not about bad practices, but about learning). The beginner who asks questions will continue to ask them as a master. Also, the time to make mistakes is when you're a beginner and can afford the time. – Mark Apr 29 at 0:43
vote up 4 vote down
bool b = (x=y) == y;

Your statement will be turned into a few operations at processor level, such as:

MOV AX, 100   #assume it holds the value of y
MOV [98], AX  #write value of y to the memory, overwrite value of x
MOV BX, 100   #reload y to compare
CMP AX, BX    #compare them

This is not how it actually works but I wanted to illustrate comparing to y will most probably will need a re-fetch from memory.

I would suggest you not to write messy and ugly code like this. If performance is so essential, use assembly instead. It's somehow very weird that you are trying to take care of the processor deeply although you are on a virtual machine and have no absolute control.

link|flag
Actually, the CLR JITter would probably optimise the reload and comparison away. – Mark Apr 29 at 1:00
1  
Mark, the problem is we are not sure, but thanks for declaring the possible move of CLR. Many optimizations far from this are going in the background. – Burcu Dogan Apr 29 at 1:05
Thanks for the detailed answer Burcu. The question was asked to fill out my very sketchy knowledge of C# and help my see if there was a solution to another problem concerning LINQ and predicates. – David Smith Apr 29 at 3:43
My eyes did light up though when I saw the assembler code. – David Smith Apr 29 at 3:44
vote up 2 vote down

In C++ (also C if you have an appropriate definition for bool and true) you can do

bool b = (x=y), true;

It doesn't appear C# supports the comma operator.

link|flag

Your Answer

Get an OpenID
or

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