Hot answers tagged oop
3
You'll have to store a reference back to the parent; python values do not track where they are stored (there can be multiple places that refer to your Status() instances):
class Status(object):
def __init__(self, parent=None):
self._message = ''
self._parent = parent
@property
def message(self):
return self._message
...
3
By using BusinessAccount.someMethod(), you're attempting to call said method in a static context, but your methods are not static. To call upon your methods, you either need to make them static or need to create an object which can then call upon them, ie:
BusinessAccount ba= new BusinessAccount (4, "name", "address", 3.4, 43.4);
ba.someMethodFromClass();
...
3
Here's what happens:
Test A = new Test(5);
Test N = new Test(5);
add(A); // method is add(Test t)
makeNew(N)// method is makeNew(Test t)
t = new Test(8);
System.out.println("Value of A.i= "+A.i);
System.out.println("Value of N.i= "+N.i);
2
No need to guess, just look at the generated "assembly" (MSIL, in fact) code:
How can I view MSIL / CIL generated by C# compiler? Why is it called assembly?
1
It's implementation dependant. But in practice, the common thing is to use a virtual table ("vtable"). There's a virtual table for each class, which contains a list of pointers to the implementation of each member function. Each object gets a pointer to the appropriate vtable.
Depending on the language and compiler flags, the appropriate pointer in the ...
1
In the first example, the colon indicates inheritance (in this case from a boost template that facilitates creating shared pointers from this)
In the last two examples the colon indicates the start of constructor initialization list.
Please, do read a good book on C++
1
You're identifying two different things. The first is an example of inheritance. It states that tcp_connection inherits publicly from boost::enable_shared_from_this<tcp_connection>.
The second and third are examples of member initialization lists. A member initialization list accompanies a constructor and allows it to initialise its members. In the ...
1
This is inheritance:
class tcp_connection
: public boost::enable_shared_from_this<tcp_connection>
This is a constructor initialization list (calls the constructor of the socket_ member):
tcp_connection(boost::asio::io_service& io_service)
: socket_(io_service)
1
I think this will make you doubt clear:
You see N still point to the first object
1
This is a limitation of object literal syntax; you just can't do it.
Your best option would be to reference network via a property on the protocol object, and add it immediately after declaring the object via object literal syntax;
network = {
post: function(t) {
console.log(t); }
protocol: {
init: function() {
this.network.post("init") } ...
1
Polymorphism allows you to store objects of a subclass in containers that are defined to hold superclass objects. For instance in your class Cage you can have a List<Feline> felines that can contain any object of a subclass of Feline
Sorting: For this you can make your superclass implement the Comparator interface, which requires concrete subclasses ...
Only top voted, non community-wiki answers of a minimum length are eligible
