+ 2
What is a class?
can some one explain in detail with definition
4 Answers
+ 7
please be more specific. do you mean a class in html or in oop (java, c++, ...)?
+ 1
class in oop
0
the simplest term i can think of is, a class contains functions (and more than just functions). a function contains a block of codes. think of class as a container that separates its contents from the other contents in your program. classes can also interact with other classes, and even "copy" each other.