OOPs Concepts
Programming and Technical
Programming
Definition
What is a class?
Read Solution (Total 2)
-
- well i think signature is not just the function arguments it is the combination of , its name, parameters, what scope it is in, and other miscellaneous information like static .
now a combination of all these things make a function unique or we can say that all these things are used to differentiate a function from another, just like my signature in real life is different from every one else , its unique.
- 11 years agoHelpfull: Yes(1) No(0)
- A class is a blueprint of an object. A class is a user-defined data type and it contains a set of variables to quantify state and a set of functions to implement behavior. The class is used to create an object whose purpose is to provide services.
A class is a specification of data structures (variables), behaviors, and inheritance of objects. A class has a public interface and its internals can be hidden from public view.
A class is a typed modular declaration from which objects are created. - 6 years agoHelpfull: Yes(0) No(0)
OOPs Concepts Other Question