active questions tagged polymorphism - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T22:32:29Zhttp://stackoverflow.com/feeds/tag/polymorphismhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1889137/inherit-from-a-template-parameter-and-upcasting-back-in-c1Inherit from a template parameter and upcasting back in c++bouchaet2009-12-11T16:19:25Z2009-12-11T19:45:42Z
<p>Hello, I have tried to use this code in VS2008 (and may have included too much context in the sample...):</p>
<pre><code>class Base
{
public:
void Prepare() {
Init();
CreateSelectStatement();
// then open a recordset
}
void GetNext() { /* retrieve next record */ }
private:
virtual void Init() = 0;
virtual string CreateSelectStatement() const = 0;
};
class A : public Base
{
public:
int foo() { return 1; }
private:
virtual void Init() { /* init logic */ }
virtual string CreateSelectStatement() { /* return well formed query */ }
};
template<typename T> class SomeValueReader : protected T
{
public:
void Prepare() { T::Prepare(); }
void GetNext() { T::GetNext(); }
T& Current() { return *this; } // <<<<<<<< this is where it is interesting
SomeValue Value() { /* retrieve values from the join tables */ }
private :
string CreateSelectStatement() const
{
// special left join selection added to T statement
}
};
void reader_accessAmemberfunctions_unittest(...)
{
SomeValueReader<A> reader();
reader.Prepare();
reader.GetNext();
A a = reader.Current();
int fooresult = a.foo();
// reader.foo() >> ok, not allowed
Assert::IsEqual<int>( 1, fooresult );
};
</code></pre>
<p>This works as expected, i.e. having access to "A" member functions and fooresult returning 1. However, an exception is thrown when objects are deleted at the end of the unittest function:</p>
<blockquote>
<p>System.AccessViolationException:
Attempted to read or write protected
memory. This is often an indication
that other memory is corrupt</p>
</blockquote>
<p>If I change the return type of Current() function to :</p>
<pre><code>T* Current()
{
T* current = dynamic_cast<T*>(this);
return current;
}
</code></pre>
<p>then everything is ok and the unit test ends with no access violation. Does someone can tell me what was wrong with the first Current() implementation? Thanks, bouchaet.</p>
http://stackoverflow.com/questions/1889996/inheritance-mucking-up-polymorphism-in-c0Inheritance mucking up polymorphism in C++?Chris2009-12-11T18:30:08Z2009-12-11T18:41:16Z
<p>Perhaps my knowledge of inheritance and polymorphism isn't what I thought it was. Can anyone shed some light?</p>
<p>Setup (trivialization of problem):</p>
<pre><code>class X {
};
class Y {
};
class Base {
public:
void f( X* ) {}
};
class Child: public Base {
public:
void f( Y* ) {}
};
</code></pre>
<p>Question: This should work, right?</p>
<pre><code>int main( void ) {
X* x = new X();
Y* y = new Y();
Child* c = new Child();
c->f( x );
c->f( y );
return 0;
}
</code></pre>
<p>I get errors (GCC 4.4) to the tune of:</p>
<pre><code>`no matching function for call to 'Child::f(X*&)'`
`note: candidates are: void Child::f(Y*)`
</code></pre>
http://stackoverflow.com/questions/1881468/c-what-is-compile-time-polymorphism-and-why-does-it-only-apply-to-functions5C++ What is compile-time polymorphism and why does it only apply to functions?nmr2009-12-10T14:51:40Z2009-12-10T18:03:09Z
<p>The question is pretty much fully embedded in the title.</p>
http://stackoverflow.com/questions/1878544/polymorphism-in-c3polymorphism in c [closed]benjamin button2009-12-10T03:56:56Z2009-12-10T04:30:05Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/524033/how-can-i-simulate-oo-style-polymorphism-in-c">How can I simulate OO-style polymorphism in C ?</a> </p>
</blockquote>
<p>is polymorphism possible in C language?
If yes,then how?</p>
http://stackoverflow.com/questions/749712/is-what-seems-like-polymorphism-in-php-really-polymorphism1Is what seems like polymorphism in PHP really polymorphism?MasterPeter2009-04-14T23:30:09Z2009-12-09T14:21:20Z
<p>Trying to figure out whether PHP supports features like method overloading, inheritance, and polymorphism, I found out:</p>
<ul>
<li>it does not support method overloading</li>
<li>it does support inheritance</li>
</ul>
<p>but I am unsure about polymorphism. I found this Googling the Internet:</p>
<blockquote>
<p>I should note that in PHP the
polymorphism isn't quite the way it
should be. I mean that it does work,
but since we have a weak datatype, its
not correct.</p>
</blockquote>
<p>So is it really polymorphism?</p>
<p><strong>Edit</strong>
Just can't quite place a definite YES or NO next to <code>PHP supports polymorphism</code>. I would be loath to state: "PHP does not support polymorphism", when in reality it does. Or vice-versa.</p>
http://stackoverflow.com/questions/99552/where-do-pure-virtual-function-call-crashes-come-from11Where do "pure virtual function call" crashes come from?Brian R. Bondy2008-09-19T04:09:28Z2009-12-08T21:26:43Z
<p>I sometimes notice programs that crash on my computer with the error: "pure virtual function call".</p>
<p>How do these programs even compile when an object cannot be created of an abstract class?</p>
http://stackoverflow.com/questions/1865028/need-sample-problems-for-hands-on0Need sample problems for hands-onAnkur2009-12-08T06:36:19Z2009-12-08T12:09:48Z
<p>I have been working with C++ for a few years now and have got good theoretical knowledge on the matter (I think).<br>
However I've been missing involvement in good projects, sort of projects that really gets one going on the technologies.<br>
So I intend to work on my own to get some good grip on C++ and related technologies.<br>
'Have started with a sample projects such as designing and coding a telephone directory.</p>
<p>Please suggest similar projects/problems that test knowledge about C++ , all aspects of the language such as using STL containers/algorithms, polymorphism, as well as designing (design patterns).</p>
http://stackoverflow.com/questions/1858047/rails-changing-polymorphic-type-of-an-object0Rails Changing Polymorphic Type Of An ObjectLee2009-12-07T05:48:47Z2009-12-08T01:30:46Z
<p>We have a parent model Vehicle that is inherited to make classes Car, Truck, SUV. In our form, we allow the user to edit the data for a bunch of Vehicles, and one of the attributes for each vehicle is a select menu for "type". The HTML attribute is named vehicle_type and updates the actual Polymorphic type attribute in the Vehicle Model:</p>
<pre><code> # Get/Set Type bc rails doesnt allow :type to be set in mass
def vehicle_type
self.type
end
def vehicle_type=(type)
self.type = type
end
</code></pre>
<p>The problem we're having is that when we call update_attributes on form data and the type of an existing vehicle has been changed, rails is calling the validation for the old class (not new type) which results in errors. What we need to do is when vehicle_type is changed, that the model is changed to that new type as well. </p>
<p>Is there a way to do this? </p>
<p><hr></p>
<p>Here is the update action (fleet has_many vehicles):</p>
<pre><code> # PUT /fleet/1
# PUT /fleet/1.xml
def update
@fleet = Fleet.find(params[:id])
respond_to do |format|
if @fleet.update_attributes(params[:fleet])
flash[:notice] = 'Fleet of vehicles was successfully updated.'
format.html { render :action => "edit" }
format.xml { head :ok }
else
format.html { render :action => "edit" }
format.xml { render :xml => @fleet.errors, :status => :unprocessable_entity }
end
end
end
</code></pre>
<p>Here is Fleet:</p>
<pre><code>class Fleet < ActiveRecord::Base
has_many :vehicles, :dependent => :destroy, :order => 'position ASC'
accepts_nested_attributes_for :vehicles,
:reject_if => proc { |attrs| attrs['name'].blank? },
:allow_destroy => true
</code></pre>
http://stackoverflow.com/questions/1857034/help-creating-a-functional-hierarchy0Help creating a functional hierarchyR. Daneel Olivaw2009-12-06T23:36:00Z2009-12-07T05:27:35Z
<p>I'm trying to create my first hierarchy with the following classes (Account, CheckingAccount, and SavingsAccount) and can't figure out how to link the classes together.<br>
Also, should the balance value be public in the header?<br>
Currently it is not, and it shows "error in this context" every time it's mentioned in this main code.</p>
<p>[stackoverflow questions]
Is using pastebin instead of including the code with the question okay?
Is there a faster way to indent by 4? Oh well.</p>
<p>header:</p>
<pre><code>class Account
{
public:
Account(double);
void creditBalance(double);
void debitBalance(double);
double getBalance() const;
protected:
double balance;
};
class SavingsAccount : public Account
{
public:
SavingsAccount(double, double);
double calculateInterest();
private:
double interest = 10;
};
class CheckingAccount : public Account
{
public:
CheckingAccount(double, double);
void feeCreditBalance(double);
void feeDebitBalance(double);
private:
double fee = 10;
};
</code></pre>
<p>CPP file</p>
<pre><code>#include "12.10.h"
#include <iostream>
using namespace std;
Account::Account(double initBal)
{
if(initBal < 0)
initBal = 0;
balance = initBal;
cerr << "Initial balance was invalid.";
}
void Account::creditBalance(double plus)
{
if(plus > 0)
balance += plus;
else
cout << "Cannot credit negative.";
}
void Account::debitBalance(double minus)
{
if(minus <= balance)
balance -= minus;
else
cout << "Debit amount exceeded account balance.";
}
double Account::getBalance() const
{
return balance;
}
SavingsAccount::SavingsAccount(double initBal,double intrst):Account(initBal)
{
if(initBal < 0){
initBal = 0;
cerr << "Initial balance was invalid.";
}
balance = initBal;
if(intrst<0)
intrst=0;
interest = intrst;
}
double SavingsAccount::calculateInterest()
{
if(interest>=0)
balance=balance+(balance*(0.01*interest));
return balance;
}
CheckingAccount::CheckingAccount(double initBal, double phi) : Account(initBal)
{
if(initBal < 0)
initBal = 0;
balance = initBal;
cerr << "Initial balance was invalid.";
if(phi < 0)
phi = 0;
fee = phi;
}
void CheckingAccount::feeCreditBalance(double plus)
{
if(plus > 0){
balance += plus;
balance -= fee;
}
else
cout << "Cannot credit negative.";
}
void CheckingAccount::feeDebitBalance(double minus)
{
if(minus <= balance){
balance -= minus;
balance -= fee;
}
else
cout << "Debit amount exceeded account balance.";
}
</code></pre>
<p>I have updated the content of my code, there are 6 errors that I can't find. I have a feeling it has to do with the altered feeDebit and feeCreditBalance.<br>
Are they supposed to keep the same name as the original debit and creditBalance ones?<br>
What is the syntax for the redefining of these functions?</p>
http://stackoverflow.com/questions/1738536/abstract-class-in-c1Abstract class in c++atch2009-11-15T19:34:21Z2009-12-04T09:44:01Z
<p>Hi, Let's say I've got class: </p>
<pre><code>class Bad_Date
{
private:
const char* _my_msg;
public:
const char* msg() const
{
return _my_msg;
}
};
</code></pre>
<p>And I would like to not be able to create any object of this class but I don't really want to put anything else there and make it pure virtual fnc. Is there any other way to make this class abstract or I have to create dummy fnc and declare it as a pure virtual?
Thank you.</p>
http://stackoverflow.com/questions/1833216/why-does-this-work-method-overloading-method-overriding-polymorphism8Why does this work? Method overloading + method overriding + polymorphismkasey2009-12-02T14:25:29Z2009-12-02T16:01:32Z
<p>In the following code: </p>
<pre><code>public abstract class MyClass
{
public abstract bool MyMethod(
Database database,
AssetDetails asset,
ref string errorMessage);
}
public sealed class MySubClass : MyClass
{
public override bool MyMethod(
Database database,
AssetDetails asset,
ref string errorMessage)
{
return MyMethod(database, asset, ref errorMessage);
}
public bool MyMethod(
Database database,
AssetBase asset,
ref string errorMessage)
{
// work is done here
}
}
</code></pre>
<p>where AssetDetails is a subclass of AssetBase.</p>
<p>Why does the first MyMethod call the second at runtime when passed an AssetDetails, rather than getting stuck in an infinite loop of recursion?</p>
http://stackoverflow.com/questions/1831635/vptr-virtual-tables3vptr - virtual tablesIdan2009-12-02T09:05:32Z2009-12-02T10:32:19Z
<p>hey,</p>
<p>there is something i still don't get.</p>
<p>for every class i declare there is a hidden vptr member pointing to the class virtual table.</p>
<p>let's say i have this declaration :</p>
<pre><code>class BASE
{
virtual_table* vptr; //that's hidden of course , just stating the obvious
virtual void foo();
}
class DERIVED : public BASE
{
virtual_table* vptr; //that's hidden of course also
virtual void foo();
virtual void cho();
}
</code></pre>
<p>first i want to understand something, is it really the same member name for the vptr both for the derived and the base ?</p>
<p>second, what happens in this situation :</p>
<pre><code>base* basic = new derived();
</code></pre>
<p>i get it, the basic variable gets derived's vptr, but how is that happening ? cause usually when conversion taking place , derived's base part (including base's vptr) should be assigned to basic, and not derived's vptr. maybe it's different if there is a variable with the same name in both classes, i dunno.</p>
<p>third and last question :
when i have</p>
<pre><code> base* basic = new derived();
</code></pre>
<p>is there a way to call with basic - base's member function even though it's virtual ?</p>
<p>thanks</p>
http://stackoverflow.com/questions/1826878/polymorphism-and-array-of-pointers-problem-in-c1Polymorphism and array of pointers problem in C++cplusplusNewbie2009-12-01T15:21:22Z2009-12-02T08:57:57Z
<p>Hi, I'm working on a project and it's in a stage that I don't know what's wrong. Here's the simplified version:</p>
<p>The code:</p>
<pre><code> class Base { // This base class is pure abstract
public:
virtual ~Base(); // Necessary to trigger destructors in inherited classes
virtual baseFunc() = 0;
};
class DerivedA : public Base{
public:
DerivedA(SomeClassUseBase * tmp){
tmp -> register(this);
}
~DerivedA();
void baseFunc(){
// do something here that's only for DerivedA
}
};
class DerivedB : public Base{
public:
DerivedB(SomeClassUseBase * tmp) {
tmp -> register(this);
}
~DeriveB();
void baseFunc(){
// do something here that's only for DerivedB
}
};
class SomeClassUseBase {
private:
Base ** basePrt;
unsigned int index;
public:
someClassUseBase(int num) {
basePrt = new Base*[num]; //create an array of pointers to the objects
index = 0;
}
void register( Base * base ){
//i tried *(basePrt[index]) = *base, but got the same problem
basePrt[index] = base;
index = index + 1;
}
void checkList() {
for (int i = 0; i < index ;i++){
next = basePrt[i];
next -> baseFunc(); //fails here
}
}
};
int main() {
SomeClassUseBase tmp = new SomeClassUseBase(5);
Base *b[5];
for ( i = 0; i < 5; i += 1 ) {
if ( i % 2 == 0 ) {
b[i] = new DerivedA(&tmp);
}
else {
b[i] = new DerivedB(&tmp);
// the object pointed by tmp::basePrt[0] is lost after this line
} // if
} // for
tmp.checkList(); //crashes here since tmp.bastPrt[0] points to null
}
</code></pre>
<p>The problem is that when in main, i reach the line when the first DerivedB is created, the already created DerivedA pointer by tmp.basePrt[0] is lost some how. I don't know why but i suspect that this has sth to do with polymorphism? Please help!! thanks!!</p>
<p>Edit:</p>
<p>Didn't quite get the code correct the first time, sorry... </p>
http://stackoverflow.com/questions/1828652/how-to-make-haskell-compute-the-correct-polymorphic-type5How to make Haskell compute the correct polymorphic type?Dario2009-12-01T20:24:38Z2009-12-02T04:17:28Z
<p>I just realized how useful the little <a href="http://www.haskell.org/ghc/docs/latest/html/libraries/base/Data-Function.html#v%3Aon" rel="nofollow"><code>on</code></a>-function can be.</p>
<p>Ex:</p>
<pre><code>orderByLength = sortBy (compare `on` length)
</code></pre>
<p>But unfortunately, the inferred types can be somewhat counter-intuitive.</p>
<p>According to the very definition</p>
<pre><code>f `on` g = \x y -> f (g x) (g y)
</code></pre>
<p>one could e.g. replace</p>
<pre><code>(==) `on` length
</code></pre>
<p>with</p>
<pre><code>\x y -> (length x) == (length y)
</code></pre>
<p>But both have different types!</p>
<p>The first has <code>[a] -> [a] -> Bool</code> whereas the second has the correct, more generic type of <code>[a] -> [b] -> Bool</code>.</p>
<p>This disallows obviously correct terms like <code>(on (==) length) [1, 2, 3] ["a", "b", "c"]</code> (which should yield <code>True</code> but now even fails type-checking).</p>
<p>I know this restriction comes up due to the usage of <a href="http://en.wikibooks.org/wiki/Haskell/Polymorphism" rel="nofollow">first-rank types</a>, but how to overcome this? Can someone formulate an implementation of <code>on</code> that can deal correctly with polymorphic functions (using universal quantification/rank-n types)?</p>
http://stackoverflow.com/questions/1826649/how-can-i-create-a-type-with-multiple-parameters-in-ocaml3How can I create a type with multiple parameters in OCaml?Thelema2009-12-01T14:46:50Z2009-12-01T14:57:24Z
<p>I'm trying to create a type that has multiple type parameters. I know how to make a type with one parameter:</p>
<pre><code>type 'a foo = 'a * int
</code></pre>
<p>But I need to have two parameters, so that I can parameterize the 'int' part. How can I do this?</p>
http://stackoverflow.com/questions/1823149/dynamic-method-dispatch-based-on-value-of-variable1Dynamic method dispatch based on value of variableIan Warburton2009-11-30T23:34:06Z2009-11-30T23:43:35Z
<p>Hi there,</p>
<p>Long switch statments are often frowned upon. The solution is to use polymorphism. However what if the thing I'm switching on is not a type code? What I would like to do is replace the switch statement with something like this...</p>
<pre><code>public void HandleString(string s = "Hello")
{
...
}
public void HandleString(string s = "Goodbye")
{
...
}
...
HandleString("Hello"); // results in the first method being called.
</code></pre>
<p>This would replace the following...</p>
<pre><code>string s = "Hello";
switch(s)
{
case "Hello":
...
break;
case "Goodbye":
...
break;
default;
break;
}
</code></pre>
<p>Any ideas? In theory I think you could do away with 'if/switch' statements altogether and just call methods that are automatically bound based on the value of an expression.</p>
http://stackoverflow.com/questions/1814851/c-generics-and-polymorphism-an-oxymoron3C# Generics and polymorphism: an oxymoron?Nick Swarr2009-11-29T06:46:36Z2009-11-29T11:33:35Z
<p>I just want to confirm what I've understood about Generics in C#. This has come up in a couple code bases I've worked in where a generic base class is used to create type-safe derived instances. A very simple example of what I'm talking about,</p>
<pre><code>public class SomeClass<T>
{
public virtual void SomeMethod(){ }
}
public class DeriveFrom :SomeClass<string>
{
public override void SomeMethod()
{
base.SomeMethod();
}
}
</code></pre>
<p>The problem comes up when I then want to use derived instances in a polymorphic way.</p>
<pre><code>public class ClientCode
{
public void DoSomethingClienty()
{
Factory factory = new Factory();
//Doesn't compile because SomeClass needs a type parameter!
SomeClass someInstance = factory.Create();
someInstance.SomeMethod();
}
}
</code></pre>
<p>It seems that once you introduce a Generic into an inheritance hierarchy or interface, you can no longer use that family of classes in a polymorphic way except perhaps internal to itself. Is that true?</p>
http://stackoverflow.com/questions/1809937/how-to-structure-a-genetic-algorithm-class-hierarchy0How to structure a Genetic Algorithm class hierarchy?MahlerFive2009-11-27T17:43:30Z2009-11-27T22:42:45Z
<p>I'm doing some work with Genetic Algorithms and want to write my own GA classes. Since a GA can have different ways of doing selection, mutation, cross-over, generating an initial population, calculating fitness, and terminating the algorithm, I need a way to plug in different combinations of these. My initial approach was to have an abstract class that had all of these methods defined as pure virtual, and any concrete class would have to implement them. If I want to try out two GAs that are the same but with different cross-over methods for example, I would have to make an abstract class that inherits from GeneticAlgorithm and implements all the methods except the cross-over method, then two concrete classes that inherit from this class and only implement the cross-over method. The downside to this is that every time I want to swap out a method or two to try out something new I have to make one or more new classes. </p>
<p>Is there another approach that might apply better to this problem?</p>
http://stackoverflow.com/questions/1787224/hibernate-apply-locks-to-parent-tables-in-polymorphic-queries1Hibernate - apply locks to parent tables in polymorphic queriesbogertron2009-11-24T01:22:55Z2009-11-24T07:34:40Z
<p>I have two objects:</p>
<pre><code>public class ParentObject {
// some basic bean info
}
public class ChildObject extends ParentObject {
// more bean info
}
</code></pre>
<p>Each of these tables corresponds to a differnet table in a database. I am using Hibernate to query the ChildObject, which will in turn populate the parent objects values.</p>
<p>I have defined my mapping file as so:</p>
<pre><code><hibernate-mapping>
<class name="ParentObject"
table="PARENT_OBJECT">
<id name="id"
column="parent"id">
<generator class="assigned"/>
</id>
<property name="beaninfo"/>
<!-- more properties -->
<joined-subclass name="ChildObject" table="CHILD_OBJECT">
<key column="CHILD_ID"/>
<!--properties again-->
</joined-subclass>
</class>
</hibernate-mapping>
</code></pre>
<p>I can use hibernate to query the two tables without issue.</p>
<p>I use </p>
<pre><code>session.createQuery("from ChildObject as child ");
</code></pre>
<p>This is all basic hibernate stuff. However, the part which I am having issues with is that I need to apply locks to the all the tables in the query.</p>
<p>I can set the lock type for the child object by using the query.setLockType("child", LockMode.?). However, I cannot seem to find a way to place a lock on the parent table.</p>
<p>I am new to Hibernate, and am still working around a few mental roadblocks. The question is: how can I place a lock on the parent table? </p>
<p>I was wondering if there was a way around having to do this without undoing the Polymorphic structure that I have set up.</p>
http://stackoverflow.com/questions/1749506/polymorphism-and-shadowing-inherited-members1Polymorphism and shadowing inherited membersJonas2009-11-17T15:07:53Z2009-11-22T11:56:57Z
<p>I have a couple of small classes to represent parts in a search filter. If the searched value equals <code>NonValue</code> the filter is supposed to do nothing. This is defined in a Base Class:</p>
<pre><code> Private Class BaseFilter
Protected NonValue As Object
Protected sQueryStringBase As String = "AND {0} {1} {2} "
Public Sub CheckNonValue(ByVal QueryItem As Object)
'No Query if Item not valid
If Me.NonValue.Equals(Me.QueryItem) Then
Me.sQueryStringBase = String.Empty
End If
End Sub
End Class
</code></pre>
<p><code>BaseFilter</code> is then extended for different types of fields:</p>
<pre><code> Private Class StringFilter
Inherits BaseFilter
Protected Shadows NonValue As String = String.Empty
End Class
</code></pre>
<p>When I then create a StringFilter and check for allowed value:</p>
<pre><code>Dim stf As New StringFilter()
stf.CheckNonValue(MyString)
</code></pre>
<p>I get a NullReferenceException <code>(NonValue = Nothing)</code> , when I expected the NonValue object to be String.Empty. Is this a bug in my code, or am I trying to achieve polymorphism in a wrong way? Thanks.</p>
http://stackoverflow.com/questions/1772537/static-abstract-methods-in-c0Static Abstract methods in C#Malfist2009-11-20T18:53:22Z2009-11-20T19:10:19Z
<p>I know it's a tautology to have a static abstract method, but how can I do something like this:</p>
<p>Base, abstract class:</p>
<pre><code>abstract class QTimerDatabaseObject {
public static abstract QTimerDatabaseObject createFromQTimer(DataRow QTimerRow);
public abstract void saveRow();
}
</code></pre>
<p>Sample Implementation (Inside a User class that extends the QTimerDatabaseObject):</p>
<pre><code> public static override QTimerDatabaseObject createFromQTimer(DataRow QTimerRow) {
int ID = (int)QTimerRow["id"];
string Username = QTimerRow["username"].ToString();
string Init = (QTimerRow["init"] ?? "").ToString();
string FirstName = (QTimerRow["FirstName"] ?? "").ToString();
string MiddleInitial = (QTimerRow["Midinit"] ?? "").ToString();
string LastName = (QTimerRow["Lastname"] ?? "").ToString();
string Salutation = (QTimerRow["salutation"] ?? "").ToString();
int RefNum = (int)(QTimerRow["refnum"] ?? -1);
int Timestamp = (int)(QTimerRow["timestamp"] ?? -1);
int DelCount = (int)(QTimerRow["delcount"] ?? 0);
bool IsHidden = (bool)(QTimerRow["hidden"] ?? false);
return new User(ID, Username, Init, FirstName, MiddleInitial, LastName, Salutation, RefNum, Timestamp, DelCount, IsHidden);
}
</code></pre>
<p>How can I do something like that?</p>
http://stackoverflow.com/questions/1528/hiding-inherited-members-in-c2Hiding inherited members in C#MojoFilter2008-08-04T19:13:54Z2009-11-19T17:51:07Z
<p>I'm looking for some way to effectively hide inherited members. I have a library of classes which inherit from common base classes. Some of the more recent descendant classes inherit dependency properties which have become vestigial and can be a little confusing when using intellisense or using the classes in a visual designer.</p>
<p>These classes are all controls that are written to be compiled for either WPF or Silverlight 2.0. I know about <code>ICustomTypeDescriptor</code> and <code>ICustomPropertyProvider</code>, but I'm pretty certain those can't be used in Silverlight. </p>
<p>It's not as much a functional issue as a usability issue. What should I do?</p>
<p><strong>update:</strong>
Some of the properties that I would really like to hide come from ancestors that are not my own and because of a specific tool I'm designing for, I can't do member hiding with the <code>new</code> operator. (I know, it's ridiculous)</p>
http://stackoverflow.com/questions/234458/does-polymorphism-or-conditionals-promote-better-design8Does polymorphism or conditionals promote better design?Nik Reiman2008-10-24T17:19:46Z2009-11-18T22:35:47Z
<p>I recently stumbled across <a href="http://googletesting.blogspot.com/2008/08/by-miko-hevery-so-you-decided-to.html" rel="nofollow">this entry in the google testing blog</a> about guidelines for writing more testable code. I was in agreement with the author until this point:</p>
<blockquote>
<p>Favor polymorphism over conditionals: If you see a switch statement you should think polymorphisms. If you see the same if condition repeated in many places in your class you should again think polymorphism. Polymorphism will break your complex class into several smaller simpler classes which clearly define which pieces of the code are related and execute together. This helps testing since simpler/smaller class is easier to test.</p>
</blockquote>
<p>I simply cannot wrap my head around that. I can understand using polymorphism instead of RTTI (or DIY-RTTI, as the case may be), but that seems like such a broad statement that I can't imagine it actually being used effectively in production code. It seems to me, rather, that it would be easier to add additional test cases for methods which have switch statements, rather than breaking down the code into dozens of separate classes.</p>
<p>Also, I was under the impression that polymorphism can lead to all sorts of other subtle bugs and design issues, so I'm curious to know if the tradeoff here would be worth it. Can someone explain to me exactly what is meant by this testing guideline?</p>
http://stackoverflow.com/questions/1741720/c-problem-with-polymorphism-and-vectors-of-pointers2c++ problem with polymorphism and vectors of pointersTC2009-11-16T11:52:37Z2009-11-16T13:20:49Z
<p>Consider the following example code:</p>
<pre><code>class Foo
{
};
class Bar : public Foo
{
};
class FooCollection
{
protected:
vector<shared_ptr<Foo> > d_foos;
};
class BarCollection : public FooCollection
{
public:
vector<shared_ptr<Bar> > &getBars()
{
// return d_foos won't do here...
}
};
</code></pre>
<p>I have a problem like this in my current project. The client code uses <code>BarCollection</code>, which stores pointers to <code>Bars</code> in <code>d_foos</code> which is declared in <code>FooCollection</code>. I'd now like to expose the collection of pointers to Bars to the client code. I could just give the client code access to the vector of pointers to <code>Foo</code>s and cast these to pointers to <code>Bar</code>s in the client code, but this feels wrong since the client doesn't have to know about <code>Foo</code>'s existence.</p>
<p>I could also define a <code>get()</code> member that retrieves objects from <code>d_foos</code> and casts them, but this feels quite clumsy. Preferably, I'd like to just return d_foos as a <code>vector<shared_ptr<Bar> > &</code>, but I cannot seem to do this.</p>
<p>It could also be that my design is just plain wrong. It seemed to most natural solution though, as <code>Bar</code> is a specialization of <code>Foo</code> and <code>BarCollection</code> is a specialization of <code>FooCollection</code> and they share functionality.</p>
<p>Could you suggest nice solutions to implement <code>getBars</code> in <code>BarCollection</code> or better design alternatives?</p>
<p><strong>Edit:</strong></p>
<p>Turns out my design was bad indeed. BarCollection is not a FooCollection, despite of requiring all of FooCollection's functionality. My current solution based on the answers below -- which is a lot cleaner -- is now:</p>
<pre><code>class Foo
{
};
class Bar : public Foo
{
};
template<class T>
class Collection
{
vector<shared_ptr<T> > d_items;
};
typedef Collection<Foo> FooCollection;
class BarCollection : public Collection<Bar>
{
// Additional stuff here.
};
</code></pre>
<p>Thanks for all the excellent suggestions and examples!</p>
http://stackoverflow.com/questions/1735138/copying-a-class-that-inherits-from-a-class-with-pure-virtual-methods-1Copying a class that inherits from a class with pure virtual methods?Stefan Kendall2009-11-14T18:30:59Z2009-11-15T00:30:24Z
<p>I've not used C++ in a while, and I've become far too comfortable with the ease-of-use of real languages.</p>
<p>At any rate, I'm attempting to implement the Command pattern, and I need to map a number of command object implementations to string keys. I have an STL map of string to Command, and I'd like to copy the Command.</p>
<p>Essentially, </p>
<pre><code>Command * copiedCommand = new Command( commandImplementation );
</code></pre>
<p>And I'd like to retain the functionality of commandImplementation. Since Command has the pure virtual function <code>execute</code>, this doesn't work. What's the correct way to do this?</p>
http://stackoverflow.com/questions/1732643/choosing-the-right-subclass-to-instantiate-programatically4Choosing the right subclass to instantiate programatically246tNt2009-11-13T23:55:19Z2009-11-14T20:40:39Z
<p>Ok, the context is some serialization / deserialization code that will parse a byte stream into an 'object' representation that's easier to work with (and vice-versa).</p>
<p>Here's a simplified example with a base message class and then depending on a 'type' header, some more data/function are present and we must choose the right subclass to instantiate :</p>
<pre><code>class BaseMessage {
public:
enum Type {
MyMessageA = 0x5a,
MyMessageB = 0xa5,
};
BaseMessage(Type type) : mType(type) { }
virtual ~BaseMessage() { }
Type type() const { return mType; }
protected:
Type mType;
virtual void parse(void *data, size_t len);
};
class MyMessageA {
public:
MyMessageA() : BaseMessage(MyMessageA) { }
/* message A specific stuf ... */
protected:
virtual void parse(void *data, size_t len);
};
class MyMessageB {
public:
MyMessageB() : BaseMessage(MyMessageB) { }
/* message B specific stuf ... */
protected:
virtual void parse(void *data, size_t len);
};
</code></pre>
<p>In a real examples, there would be hundreds of different message types and possibly several level or hierarchy because some messages share fields/functions with each other.</p>
<p>Now, to parse a byte string, I'm doing something like :</p>
<pre><code>BaseMessage *msg = NULL;
Type type = (Type)data[0];
switch (type) {
case MyMessageA:
msg = new MyMessageA();
break;
case MyMessageB:
msg = new MyMessageB();
break;
default:
/* protocol error */
}
if (msg)
msg->parse(data, len);
</code></pre>
<p>But I don't find this huge switch very elegant, and I have the information about which message has which 'type value' twice (once in the constructor, one in this switch)
It's also quite long ...</p>
<p>I'm looking for a better way that would just be better ... Does anyone has any idea how to improve this ?</p>
http://stackoverflow.com/questions/409969/polymorphism-define-in-just-two-sentences7Polymorphism - Define In Just Two SentencesMark Testa2009-01-03T22:06:40Z2009-11-14T17:36:40Z
<p>I've looked at other definitions and explanations and none of them satisfy me. I want to see if anybody can define polymorphism in at most two sentences without using any code or examples. I don't want to hear 'So you have a person/car/can opener...' or how the word is derived (nobody is impressed that you know what poly and morph means). If you have a very good grasp of what polymorphism is and have a good command of English than you should be able to answer this question in a short, albeit dense, definition. If your definition accurately defines polymorphism but is so dense that it requires a couple of read overs, then that's exactly what I am looking for.</p>
<p>Why only two sentences? Because a definition is short and intelligent. An explanation is long and contains examples and code. Look here for explanations (the answer on those pages are not satisfactory for my question):</p>
<p><a href="http://stackoverflow.com/questions/154577/polymorphism-vs-overriding-vs-overloading">http://stackoverflow.com/questions/154577/polymorphism-vs-overriding-vs-overloading</a> <br>
<a href="http://stackoverflow.com/questions/210460/try-to-describe-polymorphism-as-easy-as-you-can">http://stackoverflow.com/questions/210460/try-to-describe-polymorphism-as-easy-as-you-can</a></p>
<p>Why am I asking this question? Because I was asked the same question and I found I was unable to come up with a satisfactory definition (by my standards, which are pretty high). I want to see if any of the great minds on this site can do it.</p>
<p>If you really can't make the two sentence requirement (it's a difficult subject to define) then it's fine if you go over. The idea is to have a definition that actually defines what polymorphism is and doesn't explain what it does or how to use it (get the difference?).</p>
http://stackoverflow.com/questions/1723647/problem-with-one-to-many-relationship-with-single-table-inheritance-rails0Problem with one-to-many relationship with Single Table Inheritance (Rails)rails_newbie2009-11-12T16:47:46Z2009-11-14T14:37:25Z
<p>I have problem with STI and relationship in ActiveRecord. I think I missed something in the class methods, but I don't know for sure. Below is my models:</p>
<pre><code>class User < ActiveRecord::Base
has_many :advertisements
end
class Advertisement < ActiveRecord::Base
belongs_to :user
end
class FreeAdvertisement < Advertisement
end
class PaidAdvertisement < Advertisement
end
</code></pre>
<p>Now I want to find all FreeAdvertisement under certain user, e.g:</p>
<pre><code>u = User.find_by_username('myself')
@freebies = u.free_advertisements.all
</code></pre>
<p>It gives error:</p>
<pre><code>undefined method `free_advertisements' for #<User:0x2360f18>
</code></pre>
<p>I can hack it by using <code>u.advertisements.find :all, :conditions</code>, but that's not that I want to do.
Please help me to solve this problem. Thanks in advance.</p>
http://stackoverflow.com/questions/1718517/xcode-compiler-see-a-class-as-abstract-but-its-not1xcode compiler see a class as abstract but it's not!Tony2009-11-11T22:28:03Z2009-11-12T22:20:00Z
<p>Hi,</p>
<p>I'm working on a C++ command tool project that depends on a third party architecture called ACE (adaptive communication environment). I'm new to Xcode and this is what I've done to have my command tool project "sees" the ACE library.</p>
<ul>
<li>compile the ACE library so that I have a bunch of dynamic libraries: xxx.dylib</li>
<li>add the libraries as a dependency to the target (thru target info -> build )</li>
<li>add the directory where I have the header files to the header path build setting</li>
</ul>
<p>In one of the classes named ACE_Configuration, the header file declare a bunch of function as pure virtual. But in the implementation (cpp) file for the class, the functions are defined.</p>
<p>Now when I subclass from ACE_Configuration and instantiate this subclass in main, when I compile Xcode says I cannot instantiate this subclass because some functions are pure virtual. So in effect, Xcode is only looking at the header file and think ACE_Configuration is an abstract class but in fact it's not. Perhaps I'm not incorporating the ACE library the right way? e.g. I shouldn't use it as a dynamic library and that I need to compile everything together? That can't be i think, I'm not sure what i'm missing. Can someone please help? Thanks!</p>
<p>-Tony </p>
http://stackoverflow.com/questions/1717992/mapping-a-polymorphic-relationship-onto-2-models-simultaneously0Mapping a polymorphic relationship onto 2 models simultaneouslyRichard2009-11-11T20:53:27Z2009-11-11T22:23:29Z
<p>I need to relate a Comments model with two ids at the same time but can't figure out how. Here' my situation. I am building an <a href="http://github.com/rnhurt/gradesheet" rel="nofollow">on-line school grading system</a> and need to be able let the teacher make a comment on a particular student in a particular course for a particular term (grading period).</p>
<pre><code>class Course
has_many :course_terms
has_many :enrollments
end
class CourseTerm
belongs_to :course
end
class Student
has_many :enrollments
has_many :courses, :through => :enrollments
end
class Enrollment < ActiveRecord::Base
belongs_to :student
belongs_to :course
end
class Comment < ActiveRecord::Base
belongs_to :commentable, :polymorphic => true
end
</code></pre>
<p>I know it looks awfully complex but its pretty simple really. A course has many terms which a student can be enrolled in. I want to have comments for a CourseTerm + Student but I don't know if Polymorphic can handle multiple IDs in one comment. Can I do something like this:</p>
<pre><code>class CourseTerm
has_many :comments, :as => :commentable, :source => [:student, :course_term]
end
</code></pre>
<p>Or do I have to forgo Polymorphics and go with a standard Comment table build with a CourseTerm.id and Student.id?</p>