skywalker
skywalker

Reputation: 716

What does the "d" symbol stand for in the list of the methods applicable for some object?

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!enter image description here

Upvotes: 1

Views: 353

Answers (1)

Sotirios Delimanolis
Sotirios Delimanolis

Reputation: 280102

It describes methods that have default implementations, since Java 8.

Upvotes: 6

Related Questions