Tagged Questions

8
votes
3answers
115 views

Should one interface inherit another interface.

I can't seem to find an answer on this and just want to make sure it's an ok coding standard. I have Interface A that is used by many different classes and don't want interface A …
2
votes
3answers
59 views

Advanced PHP Polymorphism question

Hey guys! I have a class which has a function to retrieve children elements from a database. The following code will be rather pseudo cause I want to keep it as easy as possible. …
5
votes
3answers
133 views

Inheriting friendship in C++?

Since class friendship is not inherited in C++, what's the best way to "fake" it? I was thinking about exposing the friend class's private interface through protected methods in t …
2
votes
4answers
75 views

How can I inheriting from a concrete class in Perl?

Our software represents each device as a concrete class. So let's say I have a class named Cpu-Version-1, which is derived from a abstract baseclass called Device. Now, the CPU ven …
3
votes
4answers
155 views

C++ Virtual function implementation?

If I have in C++: class A { private: virtual int myfunction(void) {return 1;} } class B: public A { private: virtual int myfunction(void) {return 2;} } Then if I remove …
1
vote
3answers
79 views

Dynamic Inherritance in Ruby

Hi guys, I'm trying to make a Ruby class that is very flexible as to its type and hopefully can inherit properties from a number of other classes depending on the values its initi …
4
votes
5answers
130 views

Inheritence to extend a data structure in Haskell

A C++ programmer trying to learn Haskell here. Please excuse this probably easy question. I want to translate a program that represents 3D shapes. In C++ I have something like: …
2
votes
6answers
111 views

variables scoping when inheriting

I have two classes in C++, where one inherits from the other: class A { public: virtual void Initialize(){ m_MyString = "Default value"; } protected: strin …
2
votes
1answer
90 views

C# inheritance with views and presenters

I am working with MVP in ASP.NET and wanted see if there is an easier/cleaner way to do this. I have a presenter with a view. It turns out I can reuse some of the view properties …
1
vote
3answers
53 views

java inheritance resolution in case of instance methods and variables

Hi As per java, instance method resolution is based on runtime types of the arguments. But while resolving instance variable it uses different approach as shown below. …
0
votes
1answer
19 views

PHP Doctrine Inheritance

Hi, I'm reading through the Doctrine documentation but I can't find a way to implement the type of inheritance I want to use. I would like to set up a hierarchy like so: Node -& …
0
votes
2answers
34 views

Creating which derived type of class at runtime.

I've tried to understand some of the posts of similar, but don't quite understand their purposes and thought I'd explain my own... I have a class -- fully defined with code with p …
1
vote
4answers
179 views

Need a vector that derives from a vector.

Hi, Consider this simple code: class A { }; class V1: vector<A *>{ // my nice functions }; if I have a instance of V1, then any object derived from A can be inserted i …
0
votes
1answer
39 views

Staging my Coldfusion app when using CFC inheritance/extends

I have an application.cfc in a subdir of my webroot: /app/application.cfc I recently added another application.cfc in a subdir of that and it extends the original application.cf …
1
vote
0answers
18 views

Themed WPF ListBox-Object looks different than ListboxItem?

Hi ! When I use a Theme like link text in my WPF App, I notice a difference between the Items of ListBoxes and ComboBoxes: When I add a an object of my own class to their Items Co …

1 2 3 4 5 70 next
15 30 50 per page