It seems that this is accepted as perfectly good code in the python community:
def is_integer(input):
try:
return x % 1 == 0
except TypeError:
return False
On the other hand, the (almost) equivalent Java code would be frown upon in the Java community:
boolean is_integer(Object input){
try{
Integer temp = (Integer)input;
return true;
}catch(ClassCastException e){
return false;
}
}
Why?
Update:
Sorry for the bad example above. I do understand that there are better ways to handle the specific situation above. My question is more general: Why is the general mentality in the python community "Ask forgiveness than permission", but not in Java? Is it because of the difference in language? Difference in user base? Or is it historical? What are the pros and cons of the 2 different mentality, etc.
Update2
The "Java mentality":
Is Catching a Null Pointer Exception a Code Smell?
Link to relevant parts of the famous book "Effective Java 2nd Ed"
excerpt from the above book:
The moral of this story is simple:exceptions are, as their name impllies, to be used only for exceptional conditions; they should never be used for ordinary control flow.
The "python mentality":
Python-Check a variable is integer or not
http://en.wikipedia.org/wiki/Python_syntax_and_semantics#Exceptions
excerpt from the above wikipedia article:
Python style calls for the use of exceptions whenever an error condition might arise. Rather than testing for access to a file or resource before actually using it, it is conventional in Python to just go ahead and try to use it, catching the exception if access is rejected. Exceptions can also be used as a more general means of non-local transfer of control [...] Exceptions are often [...] used as an alternative to the if-block. A commonly-invoked motto is EAFP, or "It is Easier to Ask for Forgiveness than Permission."
Another example:
try:
User.objects.get(username=username)
except User.DoesNotExist:
return username
raise forms.ValidationError('Username is already taken.')
Update3
This is perhaps a better example. In python, you'd simply try to open a file and if it doesn't exist, catch the exception and relay that to the user. In the Java community, many people will consider first checking the file's existence a better practice IMO.
return input instanceof Integer;, which would be a good reason that that code would fail a code review. I imagine the Python code might pass (assuming you fix the variable name) because there simply wasn't a similar approach like in Java. This post might help, in a weird way: stackoverflow.com/questions/1952464/… – pickypg May 23 '11 at 5:10