C програмист пишет код на Java
Date: 03/16/07
(Code WTF) Keywords: no keywords
Встретил в чужом коде следующий фрагмент:
boolean isValidBigInteger(String value) { try { BigInteger test = new BigInteger(value); if (test != null) return true; } catch(Exception e) { } return false; }
Судя по коду про OutOfMemoryError они еще не читали.
Source: http://community.livejournal.com/code_wtf/73047.html
|