answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What mean by active class in c plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can a c plus plus class be derived from a Java class?

No.


What is the role of object in c plus plus?

An object in C++ is an instance of a C++ class.


What is nested class in c plus plus?

s.


What is the unit of programming in c plus plus A. Function B. class C. object D. Attribute?

B. Class.


Can you use c in c plus plus without using class and object?

Sure.


What is a method in c plus plus?

In C++, methods are simply class member functions.


How do you create a class in C plus plus?

class class_name { private: data_members; public: member_functions; };


What is the difference between active and passive objects in c plus plus?

Passive objects encapsulate state and operations, whereas active objects also encapsulate a process. Standard C++ does not support active objects.


What is object in c plus plus?

An object is simply an instance of a class.


What are the abstract datatypes in c plus plus?

Class Object Message


What is an instance class in C plus plus?

You have a class(i.g. MyClass): class MyClass{ public: int MyData; }; And then you use the class like this: int main(){ MyClass MyObject; MyObject.MyData=7; }


In c plus plus class is terminated by semicolon but in java it is not terminated?

True.