1
vote
4answers
93 views
what does abstract mean in this context?
I'm completley new to python, so I'm having a hard time getting started with some code we got as a framework for a homework assignment.
I'll stress that I don't want help with doi …
1
vote
6answers
94 views
An abstract method overrides an abstract method
public abstract class A
{
public abstract void Process();
}
public abstract class B : A
{
public abstract override void Process();
}
public class C : B
{
public overr …
0
votes
1answer
20 views
WCF DataContract with an abstract DataMember array
I can't make this scenario work. Here's the pattern-
[DataContract]
/*abstract*/ class BaseT
{ ... }
[DataContract]
class ChildT : BaseT
{ ... }
[DataContract]
class MessageCont …
1
vote
2answers
160 views
Serialization of an abstract class
I'm trying to serialize, and I am facing a problem with an abstact class.
I googled for an answer, and I found this blogitem.
I tried that and that work.
Ok, very nice. But check …
0
votes
9answers
333 views
Is it possible to execute a “C” statement without a semicolon
Post an example to execute a "C" statement without semicolon( ; )
3
votes
4answers
251 views
In C++, how can I implement this OOP concept?
I have two implemented classes:
class DCCmd :
public DCMessage
class DCReply :
public DCMessage
Both are protocol messages that are sent and received both ways.
Now in …
0
votes
3answers
106 views
C++ - “Member function not declared” in derived class
I have a problem in MSVC++ 2008 where VS2008 is throwing this compile error:
error C2509: 'render' : member function not declared in 'PlayerSpriteKasua'
Now, what's confusing me …
2
votes
4answers
230 views
Best operating system abstraction?
I'm looking for something to abstract the standard operating system functionality in C/C++: span/kill a thread, send/receive a message, start/stop a timer, maybe even memory manage …
1
vote
1answer
36 views
groovy mocks with abstract methods
I have a Java object called Parameter and I'm trying to mock it using groovy. Parameter is an abstract class with 1 abstract method. It also has a non-abstract method called getNam …
1
vote
3answers
178 views
A pointer to abstract template base class?
Dears,
I cannot figure this out. I need to have an abstract template base class, which
is the following:
template <class T> class Dendrite
{
public:
D …
3
votes
10answers
266 views
In Java, when should I use an abstract method in an interface?
I have the following interface in Java
public interface IFoo
{
public abstract void foo();
public void bar();
}
What is the difference between foo() and bar()?
When shou …
2
votes
2answers
107 views
Override abstract readonly property to read/write property.
I would like to only force the implementation of a C# getter on a given property from a base abstract class. Derived classes might, if they want, also provide a setter for that pro …
1
vote
2answers
103 views
Generics question
I have a generic class
public class Decoder<SIGNAL> where SIGNAL : signalType, new()
signalType is a abstract class.
How do I declare a dynamic field to store it? The fo …
2
votes
5answers
212 views
How can I get polymorphic behavior in a C++ constructor?
I have a base class that I want to look like this:
class B
{
// should look like: int I() { return someConst; }
virtual int I() = 0;
public B() { something(I()); }
}
…
4
votes
8answers
110 views
should I name all my abstract classes AbstractFoo
Is it good practice to make sure that all abstract classes have names prefixed with "Abstract"?
