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: 1 Guest(s)
Konloch Software - Bytecode Viewer - Reverse Engineering Forum
Copyright © 2014-2025 The Bytecode Club. Powered By MyBB.
CC0 Unless Specified Otherwise.