Tagged Questions

4
votes
2answers
63 views

What does the ocaml type ‘a. ‘a -> ‘a mean?

In the ocaml language specification, there's a short section: poly-typexpr ::= typexpr | { ' ident }+ . typexpr There's no explanation in the text, and the only instance of …
1
vote
9answers
89 views

methods overriding and overloading

can i overload or override methods just by using different return value ? is virtual matter in thie case ? for example : class A{ virtual int Foo(); // is this scenario possible with/without the …
0
votes
2answers
59 views

Is there a way to automaticly call all versions of an inherited method?

I'm writing a plug-in for a 3D modeling program. I have a custom class that wraps instances of elements in the 3D model, and in turn derives it's properties from the element it wraps. When the element …
2
votes
2answers
67 views

Service - client interface, architecture advice

Hi, I have a Windows WCF serivce and Web client. My service has one method [OperationContract] SubmitOrder(OrderInfo info).... // class used to pass all relevant data [DataContract] class OrderInfo …
0
votes
3answers
67 views

Polymorphism Trouble C Sharp Part 2 >.<

im trying to use this method to make my characters but i get the error: inconsistent accessibility:return type'consoleapplication1.Enemigo' is less accesible than method …
0
votes
2answers
82 views

Polymorphism Trouble C Sharp

Im trying to make something like an Rpg game atm but im really stuck on something i really dont know what to do anymore i really need help it might look like a noob question but please try to answer …
1
vote
2answers
108 views

abstract class and using array polymorphically

i'm just reading meyers "More Effective C++ 35 New Ways" - item 33, and he suggest there always to inherit from an abstract base class, and not a concrete. one of the reason he claims, which i can't …
0
votes
1answer
25 views

Rails User model has_many activities (observer) but should also be observed

I'm running into an issue with an existing ActiveRecord::Observer model that records various Activities of a User the site. Everything was working really well, until I tried to observe the User class …
0
votes
3answers
122 views

Inheritance mucking up polymorphism in C++?

Perhaps my knowledge of inheritance and polymorphism isn't what I thought it was. Can anyone shed some light? Setup (trivialization of problem): class X { }; class Y { }; class Base { public: …
1
vote
3answers
80 views

Inherit from a template parameter and upcasting back in c++

Hello, I have tried to use this code in VS2008 (and may have included too much context in the sample...): class Base { public: void Prepare() { Init(); CreateSelectStatement(); …
5
votes
5answers
269 views

C++ What is compile-time polymorphism and why does it only apply to functions?

The question is pretty much fully embedded in the title.
3
votes
8answers
217 views

polymorphism in c [closed]

Possible Duplicate: How can I simulate OO-style polymorphism in C ? is polymorphism possible in C language? If yes,then how?
0
votes
3answers
86 views

Need sample problems for hands-on

I have been working with C++ for a few years now and have got good theoretical knowledge on the matter (I think). However I've been missing involvement in good projects, sort of projects that really …
0
votes
2answers
44 views

Rails Changing Polymorphic Type Of An Object

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 …
0
votes
3answers
73 views

Help creating a functional hierarchy

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. Also, should the balance value …

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