Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does compiled method in java mean

Tags:

java

Please, I often find java methods that are empty with a comment compiled code

Here is an example

public E get(int index) { /* compiled code */ }

I can not find the meaning!! thank you for your clarification

like image 268
Frankie Avatar asked Dec 25 '22 18:12

Frankie


1 Answers

This often happens when you are using an external library.

It means that your IDE doesn't hold the source code for that library. So he knows the method's name and signature, but not its code

like image 142
BackSlash Avatar answered Dec 28 '22 06:12

BackSlash