What is the difference between C structures and Java classes?

前端 未结 4 557
臣服心动
臣服心动 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:18

    C struct cannot have methods/functions in it. It is only a collection of different data types. class can have both variables and methods declared.

提交回复
热议问题