Answer Posted / roger
yey, problems arrise with the syncronisation of threads,
and sharing data. these are resolved using semophores and
Mutexes.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is byval and byref? What are differences between them?
What is encapsulation process?
What is abstract class in oop?
Is react oop?
Can we create object of abstract class?
What are classes oop?
What is the point of polymorphism?
write a program to find 2^n+1 ?
What is methods in oop?
What are the 4 pillars of oop?
Can we have inheritance without polymorphism?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.
What is constructor in oop?
What is constructor overloading in oop?