If you're on a 64-bit processor, and you've compiled your code for 64-bit, then at least some of the time, long is likely to be more efficient because it matches the register size. But whether that will really impact your program much is debatable. Also, if you're using long all over the place, you're generally going to use more memory - both on the stack and on the heap - which could negatively impact performance. There are too many variables to know for sure how well your program will perform using long by default instead of int. There are reasons why it could be faster and reasons why it could be slower. It could be a total wash.
The typical thing to do is to just use int if you don't care about the size of the integer. If you need a 64-bit integer, then you use long. If you're trying to use less memory and int is far more than you need, then you use byte or short.
x86_64 CPUs are going to be designed to be efficient at processing 32-bit programs and so it's not like using int is going to seriously degrade performance. Some things will be faster due to better alignment when you use 64-bit integers on a 64-bit CPU, but other things will be slower due to the increased memory requirements. And there are probably a variety of other factors involved which could definitely affect performance in either direction.
If you really want to know which is going to do better for your particular application in your particular environment, you're going to need to profile it. This is not a case where there is a clear advantage of one over the other.
Personally, I would advise that you follow the typical route of using int when you don't care about the size of the integer and to use the other types when you do.
[citation needed]. – Matt Ball Jul 26 '11 at 3:50longbe used to store the "day of year"? – user166390 Jul 26 '11 at 3:58(int)like sizes of arrays and collections. If you think you should be usinglongeven just in case, I would use it. However, if you can't imagine alongwould be useful, don't use it. If later you discoverlongis needed you can change the code. I think YAGNI still applies here. c2.com/xp/YouArentGonnaNeedIt.html – Peter Lawrey Jul 26 '11 at 6:53floatoperations are not much faster thandoubleoperations. Its to impact on the cache and memory bandwidth which can make more difference. – Peter Lawrey Jul 26 '11 at 9:23