What is the difference between C structures and Java classes?

前端 未结 4 626
臣服心动
臣服心动 2021-02-08 18:21

I\'m a newbie to Java, but somewhat familiar to C. I wanted to know -- what differences are there between C structures and Java objects and invoking their methods? Or are the

4条回答
  •  故里飘歌
    2021-02-08 19:20

    The key differences, IMHO are that classes allow

    • encapsulation
    • polymorphism

    These are two very important features of OOP.

提交回复
热议问题