38,891 reputation
93880
bio website
location Malmö, Sweden
age 57
visits member for 2 years, 4 months
seen yesterday
stats profile views 7,986

I have been a software developer for 30 years, using a variety of programming languages like COBOL, Pascal, C, assembly, and some scripting languages. Now very interested in following the development of the new C++11 standard.

Currently working for a bank, providing file services for corporate customers.


1d
comment Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
@АртёмЦарионов - I mean literally anything. The language standard explicitly says that it defines no meaning for this code. The compiler might tell you so, or the computer might explode when the code is run. The language standard just doesn't say what should happen.
Jun
4
awarded  Good Answer
Apr
27
comment c++ - binding operator= member of std::string
Did you intend = to be ==?
Apr
27
revised Magento 1.7 - How to extend core controller
added 8 characters in body
Apr
27
comment Avoid function call on compile time false condition
Are you sure the compiler isn't doing this already?
Apr
27
comment Does int a=1, b=a++; invoke undefined behavior?
@Daniel - Oh :-} I was concerned about code intending to set a equal to 2 starting out with int a = 1, ... and didn't see the the other results of the code. So, even if it doesn't cause any undefined behavior, it is obviously confusing. Thanks.
Apr
27
revised Java - Bounded Queue using array
added 534 characters in body
Apr
27
reviewed No Action Needed “Spawning” a sprite precisely inside another sprite
Apr
27
reviewed No Action Needed Webkit dot net issue with GetElementById
Apr
27
reviewed No Action Needed parametrized methods in controllers
Apr
27
reviewed No Action Needed aptana 3 studio preview shared with web browser
Apr
27
reviewed No Action Needed error LNK2019 and LNK1120 errors
Apr
26
comment How can I disable c++ return value optimization for one type only?
This seems like an XY problem, where you ask about your attempted solution rather than the real problem. Why is it "really important" to record a copy operation that was actually never performed?
Apr
26
comment Does int a=1, b=a++; invoke undefined behavior?
@quetzalcoatl - No. If the code is so complicated that we have to discuss what the result is, if any, we just shouldn't use it. Especially not when there is a simpler version, like int a=2, b=2;, which is both shorter and obvious to everyone. IOCCC is sometimes slightly fun, but not important.
Apr
25
comment Does int a=1, b=a++; invoke undefined behavior?
Is this important? int a=2, b=2; seems both shorter and safer.
Apr
25
comment Side effects in C
Note that the quote is about C++, which is quite different from C.
Apr
25
comment Is there a difference between initializing a variable and assigning it a value immediately after declaration?
x = 1 + 1 will also generate the same code as x = 2. Does that mean that assignment and addition is also the same?
Apr
25
comment с++11 std::begin doesn't work with int[] passed into template function
possible duplicate of Sizeof an array in the C programming language?
Apr
25
revised Assembly language instruction
deleted 18 characters in body; edited tags
Apr
25
comment Confused with direct initialization and copy initialization
@jiafu - Yes, it is "related" to the copy constructor, as there formally is a copy involved, but the compiler will optimize that out. If you have a user defined class with constructors that are explicit, private, or delete'ed, you might notice a difference. For std::string that is not the case.