Help:Contents
From Meshplex
class is based on oops concept. Through class we can bind our code and data. The process of binding code and data is know as encapsulation.we can declare our own method or function inside a class.A class can be private or public or protected. we can declare a class by following syntax
class <class name> {
public <return type><method name>() { //some code here }
}
we can create an object to call these method with the help of NEW keyword

