Reputation: 716
Can anybody tell me what does the "d" symbol mean next to the green circle in the method description in eclipse?
I believe it is something like "deprecated" because I am using java 1.8 and I noticed that the same code cannot be compiled in java 1.7. As far as I know the deprecated methods are represented by declaration + a line over it.
Screenshot is attached for more details. Sorry if the question is duplicated.
Thank you!
Upvotes: 1
Views: 353
Reputation: 280102
It describes methods that have default
implementations, since Java 8.
Upvotes: 6