0
votes
1answer
12 views
link_to issue with inherited Active Record class.
Here are the classes as I have them set up:
class Stat < ActiveRecord::Base
belongs_to :stats_parent
end
class TotalStat < Stat
belongs_to :stats_parent
end
#The S …
1
vote
4answers
78 views
Forcing sub classes to implement a method
Hi
I am creating an object structure and I want all sub classes of the base to be forced to implement a function.
The only ways I could think of doing it were:
An abstract clas …
1
vote
2answers
54 views
How-to do the clean up ?
I have this code.
A base class that create a new instance of the context.
public class Base
{
private Entities context;
public Base()
{
context = n …
2
votes
3answers
111 views
Modeling “optional” inheritance
I'm having trouble deciding on a way to model this type of relationship...
All bosses can do certain things and have certain things (velocities, health, etc.) so these are part of …
0
votes
3answers
70 views
c# inherited class initialization
so with this class i have
public class Options
{
public bool show { get; set; }
public int lineWidth { get; set; }
public bool fill { get; set; }
…
1
vote
5answers
117 views
Equality Test for Derived Classes in C++ [closed]
Possible Duplicate:
What’s the right way to overload operator== for a class hierarchy?
In C++, how can derived classes override the base class equality test in a mea …
1
vote
2answers
58 views
Passing around base class pointers
Scenario: I have the following defined classes.
class Baseclass { };
class DerivedTypeA : public Baseclass { };
class DerivedTypeB : public Baseclass { };
// ... and so on ...
cl …
1
vote
2answers
22 views
Code generation for composition using Eclipse
Effective Java, along with other sources suggest that we should consider using composition over inheritance. I have often found my self achieving such composition by using the Dec …
1
vote
7answers
93 views
C# - Hiding all methods of the UserControl class from a derived one
Hi,
I have a custom user control. Normally it inherites the UserControl class. But by this way it inherites all the public methods and properties of UserControl. But I want to hide …
1
vote
3answers
84 views
Java: Instantiate or Inheritance?
I am writing a logging service for one of my applications but I am sure many other applications would use this. In that case, would it make sense to make the application extend a c …
1
vote
3answers
38 views
Polymorphism and shadowing inherited members
I have a couple of small classes to represent parts in a search filter. If the searched value equals NonValue the filter is supposed to do nothing. This is defined in a Base Class: …
1
vote
2answers
61 views
How to have templated function overloads accept derived classes from different base classes?
I want to be able to define
template <class TX>
void f(const TX &x){ ... }
template <class TY>
void f(const TY &x){ ... }
where TX must be derived from BaseX …
8
votes
4answers
186 views
+100
Embedding instead of inheritance in Go
What is your opinion of this design decision? What advantages does it have and what disadvantages?
Links:
Embedding description
3
votes
10answers
196 views
How to Inherit method but with different return type?
Given the following classes:
ClassA
{
public ClassA DoSomethingAndReturnNewObject()
{}
}
ClassB : ClassA
{}
ClassC : ClassA
{}
Is there a way to get ClassB and C …
0
votes
3answers
53 views
How to access controls on an inherited form?
Hi,
I'm using the DockPanel Suite in my winforms app. The DockContent class is derived from System.Windows.Forms.Form class and my two forms, dockRounds and dockToolbox, inherit f …
