Sex Slave   01-08-2015, 08:04 AM
#7
They are indeed useless. I think they are also pretty confusing and render code as less easy to read.
For example, why use a forloop like this:
Code:
list.forEach(i -> i.invokeMethod());

When you can simply, and more readably do this:

Code:
for(int i : list){ i.invokeMethod(); }
  
Users browsing this thread: 2 Guest(s)
Konloch Software - Bytecode Viewer - Hack Log - Reverse Engineering Forum
Copyright © 2014-2026 The Bytecode Club. Powered By MyBB.
CC0 Unless Specified Otherwise.