Reputation: 81
I'm confused between these two term in android documentation!! these screenshot about what i mean
Upvotes: 1
Views: 161
Reputation: 40218
Constants are fields declared with static
and final
modifiers. Inherited constants would include all parent constants which are either public
or protected
, inherited fields would include all parent fields which are either public
or protected
.
Upvotes: 2