Click here to Skip to main content
Licence CPOL
First Posted 22 Mar 2010
Views 8,758
Bookmarked 1 time

Re boxed primitives in Java and .NET

By rtybase | 23 Mar 2010 | Technical Blog
Why "i = i++" expression returns different results in C++ and Java/.NET?
   3.60 (5 votes)
1 vote, 20.0%
1

2
1 vote, 20.0%
3
1 vote, 20.0%
4
2 votes, 40.0%
5
3.60/5 - 5 votes
μ 3.60, σa 2.93 [?]
 
A Technical Blog article. View original blog here.[^]

One of my colleagues posted the following question once “why <i = i++> expression returns different results in C++ and Java/.NET?”. For instance, try this:

C/C++

int i = 1;
i = i++; 
printf("%d\n", i);
result is 2

Java

int i = 1;
i = i++; 
System.out.println(i);
result is 1

Many C++ developers will argue that <i = i++> is left undefined in C++ (i.e. it is up to compiler implementers to return whatever they think it is most appropriate). However, at a more practical level, <i = i++> against a primitive int type, in C/C++, is a simple (optimized ASM code, avoiding all the formalities with moving to/from registers):

mov i, i
inc i

at the same "address location" (in a simplistic way). So the result is 2.

Now, let's look at what C++ suggests about operator++(int). It suggests making a copy of the current instance, increasing current instance and returning the copy. Following this rule, the result is:

class MyInt {
private:
	int i;
public:
	MyInt(int iVal) { i = iVal; };
	int val() const { return i; };
	MyInt(const MyInt& t) { i = t.val(); };

	MyInt& operator=(const MyInt& t) {
		i = t.val();
		return *this;
	};

	MyInt operator++(int) {
		MyInt t = *this;
		i++;
		return t;
	};
};

MyInt func() {
	MyInt i = MyInt(1);
	i = i++;
	return i;
}

int _tmain(int argc, _TCHAR* argv[])
{
	int i = 1;
	i = i++;
	_tprintf(_T("%d\n"), i);

	MyInt t = func();
	_tprintf(_T("%d\n"), t.val());
	return 0;
}
Result is
2
1

But it is exactly what Java/.NET returns. From this, it is logical to conclude that Java/.NET primitives are boxed (which seems to be logical, otherwise it is hard to imagine how to support platform independence in Java/.NET, for example replacing the above class with a structure like "struct MyInt { int i : 32; };" in order to support 32 bits integers). Also this means that C/C++ works faster with primitives :)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

rtybase

Architect
Endava Ltd.
United Kingdom United Kingdom

Member
My name is Ruslan Ciurca. Currently I am Analyst Consultant at Endava Ltd (www.endava.com), former Compudava and Brains Direct (UK) group.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 PinmemberReaboi Artur20:50 5 May '10  
GeneralRe: My vote of 1 Pinmemberrtybase0:51 6 May '10  
GeneralRe: My vote of 1 PinmemberReaboi Artur5:53 7 May '10  
GeneralRe: My vote of 1 Pinmemberrtybase1:22 8 May '10  
GeneralRe: My vote of 1 PinmemberReaboi Artur20:13 9 May '10  
GeneralRe: My vote of 1 [modified] Pinmemberrtybase23:18 9 May '10  
Generali++ vs. ++i PinmemberDennis Dykstra11:11 30 Mar '10  
GeneralRe: i++ vs. ++i Pinmemberrtybase7:02 31 Mar '10  
GeneralRe: i++ vs. ++i PinmemberDennis Dykstra19:40 31 Mar '10  
GeneralRe: i++ vs. ++i Pinmemberrtybase7:24 1 Apr '10  
GeneralReal Story PinmemberJonathan C Dickinson22:26 29 Mar '10  
GeneralRe: Real Story Pinmemberrtybase7:16 31 Mar '10  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120222.1 | Last Updated 23 Mar 2010
Article Copyright 2010 by rtybase
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid