Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?
You are not logged in.
Pages: 1
I've seen a couple examples of turning true to false and false to true which are more complicated than they need to be, such as
if (Countdown.Enabled) { Countdown.Enabled = false; } else { Countdown.Enabled = true; }
Simply use
Countdown.Enabled = !Countdown.Enabled;
Wait, no - use
[boolean] ^= true;
Last edited by Metatron (Aug 17 2014 7:39:25 pm)
Thank you eleizibeth ^
I stack my signatures rather than delete them so I don't lose them
Offline
I've seen a couple examples of turning true to false and false to true which are more complicated than they need to be, such as
if (Countdown.Enabled) { Countdown.Enabled = false; } else { Countdown.Enabled = true; }
Nope never seen this...
But I used to:
If(Countdown.Enabled) Countdown.Enabled = false; else Countdown.Enabled = true;
Less usage of RAM...
Last edited by The Doctor (Aug 14 2014 11:58:49 am)
Warning!
This user has been found guilty by The Committee of Truth of using honesty, and reminding people of the past, without permission and outside of the allotted timeframes.
I’ve been asked if I’m ChatGPT5.
The answer is no.
I hope this helps! Let me know if you have any other questions.
Everybody edits, but some edit more than others
Offline
I don't think that 1 or two bits will kill your computer... x = !x is way smaller, and way classier ^^"
Offline
If you don't have much RAM it matters!
Last edited by The Doctor (Aug 14 2014 12:48:34 pm)
Warning!
This user has been found guilty by The Committee of Truth of using honesty, and reminding people of the past, without permission and outside of the allotted timeframes.
I’ve been asked if I’m ChatGPT5.
The answer is no.
I hope this helps! Let me know if you have any other questions.
Everybody edits, but some edit more than others
Offline
If you don't have much RAM it matters!
Well, if you're coding on a commodore, sure. But for instance windows 8 needs 1GB of RAM and a regular PC as 4GB. Which is roughly (4-1)*10^7 bits "available". So as I said, 1 or 2 bits won't change a thing.
Offline
I'm talking more about clean coding rather than making it easier for your computer (unless you have thousands of these)
Thank you eleizibeth ^
I stack my signatures rather than delete them so I don't lose them
Offline
You all forgot about:
bool a = (b) ? false : true;
All in one line, (should be) same as if statement.
Much many happier.
bool a = b ? false : true;
2 less chars.
Offline
The Doctor wrote:If you don't have much RAM it matters!
Well, if you're coding on a commodore, sure. But for instance windows 8 needs 1GB of RAM and a regular PC as 4GB. Which is roughly (4-1)*10^7 bits "available". So as I said, 1 or 2 bits won't change a thing.
We'll I got 500MB.... And yes surprising I can run Win. 8! But I use linux most times.
Also the negation takes time as if. And if you use that in C you can have troubles.
Last edited by The Doctor (Aug 15 2014 1:01:30 am)
Warning!
This user has been found guilty by The Committee of Truth of using honesty, and reminding people of the past, without permission and outside of the allotted timeframes.
I’ve been asked if I’m ChatGPT5.
The answer is no.
I hope this helps! Let me know if you have any other questions.
Everybody edits, but some edit more than others
Offline
tikenalpha wrote:The Doctor wrote:If you don't have much RAM it matters!
Well, if you're coding on a commodore, sure. But for instance windows 8 needs 1GB of RAM and a regular PC as 4GB. Which is roughly (4-1)*10^7 bits "available". So as I said, 1 or 2 bits won't change a thing.
We'll I got 500MB.... And yes surprising I can run Win. 8! But I use linux most times.
Also the negation takes time as if. And if you use that in C you can have troubles.
So it should leave you around 200MB to work other stuff. You could still do 100 000 000*8 "x = !x" at the same time. Btw, made a huge mistake in my precedent post. 4GB gives you (4-1)*10^10 bits "available".
As for C, the boolean doesn't exist, so yeah, you will have a problem. So instead, you'll use "x = 1 - x".
Offline
Couldn't you use:
[boolean] ^= true;
Couldn't you use:
[boolean] ^= true;
I didn't even realise that existed - thank you so much for bringing this up.
Thank you eleizibeth ^
I stack my signatures rather than delete them so I don't lose them
Offline
Flish wrote:Couldn't you use:
[boolean] ^= true;I didn't even realise that existed - thank you so much for bringing this up.
Not a problem. I'm a noob at C#, so I am still learning. I came across that method of toggling bools quite awhile ago.
Couldn't you use:
[boolean] ^= true;
You could (I didn't know this one, I had to check ^^) but I'm not sure it's quicker. Probably slower I think (you won't see it, unless you're using an amstrad with Windows Vista on it).
Offline
Wtf kind of potato machine do you use zumza
Asus potato
Warning!
This user has been found guilty by The Committee of Truth of using honesty, and reminding people of the past, without permission and outside of the allotted timeframes.
I’ve been asked if I’m ChatGPT5.
The answer is no.
I hope this helps! Let me know if you have any other questions.
Everybody edits, but some edit more than others
Offline
Asus potato
GLaDOS is running on a potato, why are you complaining about RAM ?
Offline
In the end, any approach you take will likely result in the exact same code generated by your compiler.
I'd also like to point out that in any language that is compiled to any extent, whitespace and brackets have no impact whatsoever on execution time (provided that it's still syntactically the same code). The only thing you'll save is a few bytes of source code, but that really doesn't matter at all on any modern machine.
Readability, maintainability, and correctness are the most important aspects of code. Everything else is secondary. Many modern optimizing compilers are so good that they can actually do some magic with loop reordering to turn naive O(n^2) algorithms into O(n) or even O(log(n)) algorithms.
...
And anyways, the most clear way to invert a boolean is
x = !x;
Offline
Pages: 1
[ Started around 1743843614.0166 - Generated in 0.086 seconds, 13 queries executed - Memory usage: 1.72 MiB (Peak: 1.96 MiB) ]