Which of the following is not true for class in Object-Oriented Approach 以下哪项不适用于面向对象方法中的类 A class represents a collection of objects having same characteristic properties 类表示具有相同特征属性的对象集合 A class is a logical entity Static description 类是逻辑实体 静态描述 Classes are the same as objects 类与对象相同 Classes are abstract 类是抽象的
时间: 2024-04-07 09:30:59 浏览: 108
关于类和面向对象
The statement "Classes are the same as objects" is not true for class in Object-Oriented Approach.
Classes and objects are two different concepts in object-oriented programming. A class is a blueprint or template for creating objects, while an object is an instance of a class. A class represents a collection of objects having the same characteristic properties, is a logical entity (static description), and is often abstract in nature.
阅读全文