Introduction to Java

Java Programming is concisely explained.

Entries from 2019-07-20 to 1 day

5. Static and Non-static Members

There are two kinds of member in java class. One is called static member, the other is non-static member. Static member includes static field and static method: Static members are with "static" modifier. Those are said to belong to the cla…