Description:
Object-oriented programming and languages.
|
|
|
architecture diagram
|
| |
Hello, I am not sure when we have existing services what diagram we use to show integration/interfacing of services. I would also like to show that client is calling service for what reason. If service is going to publish information then it sends to subscriber for what reason. So this sounds to be that we are showing processes on diagram and why... more »
|
|
Creating restrictions on the values returned
|
| |
I am creating an interface which has a method that returns a list of objects. I want to have restriction on number of elements returned by the implementation class. Though number of max elements allowed is passed as an argument to the method there is no guaranty that the implementation class will adhere to the numbers. How can I have... more »
|
|
c++ class design: where to put debug purpose utility class?
|
| |
Hi, Let's say I have the following class: class foo { public: foo(); void addItem(int item); private: int* items; ...I want to write a unit test program to test foo::addItem(), to do that the test program needs to know the contents of foo::items. So I can add one more public function to class foo:... more »
|
|
|