vote up 4 vote down star
1

I'm curious to know, what is the most abrasive, caustic, abusive but perfectly legal and correct C++ you've ever seen ship out the door?

This question isn't meant to be a C++ bashing session, but a humorous introspection into the world of C++ we allow ourselves (or others) to get away with.

flag
3  
"Insipid" means lacking in taste; stuff which is abrasive, caustic and abusive is unlikely to be insipid. – Jonathan Leffler Aug 27 at 4:04
1  
Not sure how illegal C++ would get shipped out the door! – Alex Aug 27 at 6:17
2  
closed? So sad. – beggs Aug 27 at 7:08
4  
Why is this question closed? I just don't understand I should be refrained from posting an answer. Oh well... – Dimitri C. Aug 27 at 9:42
1  
I second this. It is relevant and intersting question. – ttvd Aug 27 at 10:05
show 3 more comments

12 Answers

vote up 34 vote down

The most abusive C++ I've seen by far is "Analog Literals" by Eelis.

It basically lets you do this:

  unsigned int c = ( o-----o
                     |     !
                     !     !
                     !     !
                     o-----o ).area;

or

   unsigned int c = ( o-------------o
                      |L             \
                      | L             \
                      |  L             \
                      |   o-------------o
                      |   !             !
                      !   !             !
                      o   |             !
                       L  |             !
                        L |             !
                         L|             !
                          o-------------o ).volume;

See here http://www.xs4all.nl/~weegen/eelis/analogliterals.xhtml

link|flag
Incredible!!!!!!!!!!!!!! – Miguel Angel Aug 27 at 8:54
I have no words... that's some crazy stuff. – fbrereto Aug 27 at 14:49
"Good... Use your aggressive feelings, boy!" This feels just like the dark side of the Force – fishlips Aug 27 at 17:40
that is insane! – mezoid Sep 4 at 3:08
No words...should have sent a poet! – Mike Clark Oct 9 at 22:36
vote up 14 vote down
if (!this) return;
link|flag
I don't get it, feels dumb, this type of statement is quite typical in Objective-C, if (!self) return nil;. – dreamlax Aug 27 at 6:20
Sadly I've seen plenty of "assert(NULL != this);" – akent Aug 27 at 6:24
Regarding the differences between this and self: stackoverflow.com/questions/1341734/… – fbrereto Aug 27 at 22:28
vote up 13 vote down
#define private public
link|flag
5  
Don't read this one while drinking coffee, or you'll be cleaning your monitor. – fbrereto Aug 27 at 14:48
7  
I like: #define if while better – windfinder Aug 28 at 15:09
vote up 5 vote down

;

link|flag
for a second there I thought you hadn't written anything... – mezoid Sep 4 at 3:11
1  
Huh? Just a semicolon? What? Why? – Rasmus Kaj Nov 10 at 21:00
vote up 4 vote down

On a project at work I see people go:

if(false){

//Old code here

}

instead of using:

/*

*/

or just using cvs, like normal people.

link|flag
6  
/* */ can be interrupted by other comments. I'll occasionally use a #ifdef 0, but if(false) is safer still. Also, you can set the PC into the block with a debugger if you want to test the old behaviour. – Dan O Aug 27 at 4:59
8  
the if(false) may actually be useful to ensure it will still compile when "commented-in" again when you make changes elsewhere. – Johannes Schaub - litb Aug 27 at 5:03
15  
Normal people use CVS? – avakar Aug 27 at 5:21
1  
I often use this for temporarily disabling code. This way, it is still compiled, and you make clear the code is not obsolete. – Dimitri C. Aug 27 at 6:28
1  
Putting the PC in the commented-out block during debugging sounds like a scary tactic; who's to say the compiler doesn't just optimize it out? Just curious... – fbrereto Aug 31 at 22:24
show 5 more comments
vote up 4 vote down

#include <afxwin.h> //basic MFC include

link|flag
The MFC might not be elegant, but it serves its purpose. – Eduardo León Aug 28 at 12:57
vote up 3 vote down

I have seen stuff like this, tricking around with const :-)

class abc {
public:
    long GetVal() const
    {
    	return const_cast<abc*>(this)->GetVal();
    }

    long GetVal()
    {
    	return member_++;
    }
private:
    member_;
};
link|flag
Implementing the const version in terms of the non-const similar to that is actually a fine thing to do -- the real problem here is the existence of a const version of a logically-mutating method. – me22 Sep 10 at 19:12
Most time not. Its just that they do not know about mutable. Its more GetVal is a const method most time. member_ could be an access counter or whatever variable. So mutable member_ woud allow you to make the compiler check wheather none other members are changed. – Totonga Sep 11 at 12:11
vote up 2 vote down

Calling non-virtual functions that do not modify member variables on null pointers like so:

class CObject 
{
public:
void CallMeOnNull()
{
  int i = 0;
  i++;
}

virtual void DontCallMeOnNull()
{
  int i = 0;
  i++;
}

void DontCallMeOnNull2()
{
  m_iTest++;
}
private:
    int m_iTest;
};

int test()
{
  CObject* pObject = NULL;
  pObject->CallMeOnNull(); //IS OK???!!!
  pObject->DontCallMeOnNull();
  pObject->DontCallMeOnNull2();
}
link|flag
vote up 2 vote down

Here's some downvote-bait. I do a couple things that reduce errors in editing, but look funny, like

MyFunction(1stArg
    , 2ndArg
    , 3rdArg
    ... etc. ...
    , lastArg
    );

because if I want to add a new argument to the function, I often add it at the end, so it is a 1-line edit, rather than 2 lines.

Another example:

if (false){ }
else if (Test1){
    ... do stuff ...
}
else if (Test2){
    ... do stuff ...
}
... more tests ...
else {
    ... do stuff ...
}

Why? because it makes it easier to insert, delete, or re-order the tests without the first one having different syntax (and thus edited differently) from the rest. This is especially useful in generated code.

link|flag
What's the point in the first one? That the comma is at the start of the line? – jalf Sep 3 at 19:59
@jalf: Right, so if you want to insert an additional argument, it's just a 1-line insertion, rather than inserting "<comma><newline & tabs> <new last arg>" in front of parenthesis on old last line. – Mike Dunlavey Sep 4 at 1:46
+1 @Mike: not too dumb. i'll remember that one the next time i'm building complex if's :D thx for the idea – Atmocreations Nov 10 at 20:55
vote up 1 vote down

I once did templates the C (not C++) way: using #includes, #defines, #ifdefs and recursion at compilation time.

link|flag
vote up 1 vote down

I occurred to work on a program where the previous programmer systematically checked that address of non dynamic buffers where not NULL... at first it just look dumb, but when applied to a full program it makes it quite harder to read and maintain.

char buf[10];
if (buf != NULL) {
...
}

That was C, but you can do the same with C++ (hopefully not).

link|flag
vote up 0 vote down
#include <stdio.h>
link|flag
Care to explain why this is abusive? – Graeme Perrow Sep 3 at 19:40
Well, it should be <cstdio>, but I agree it's not exactly abusive. – me22 Sep 10 at 19:14

Your Answer

Get an OpenID
or

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