0
votes
3answers
81 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; }
…
6
votes
3answers
538 views
Are there alternatives to polymorphism in C++?
The CRTP is suggested in this question about dynamic polymorphism. However, this pattern is allegedly only useful for static polymorphism. The design I am looking at seems to be …
0
votes
1answer
32 views
simics or tau?
Is there somebody that use SIMICS or TAU?
are good tools to profiling my code? I see that SIMICS is also a virtual platform hardware dipendent so i can run different simulation on …
2
votes
4answers
184 views
Template class + virtual function = must implement?
This code:
template <typename T>
struct A
{
T t;
void DoSomething()
{
t.SomeFunction();
}
};
struct B
{
};
A<B> a;
is easily compile …
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()); }
}
…
0
votes
2answers
77 views
Objective-C protocols mimicking ‘virtual-functions’ yield compiler warnings?
In Objective-C, I'd like to force derived classes to implement a given interface without providing a default implementation (an implementation in the parent class).
I understand t …
1
vote
2answers
109 views
sizeof on a class inheriting from a base class with a virtual function
For the following code fragment.
/*This program demonstartes how a virtual table pointer
* adds to a size of a class*/
class A{
};
class X{
public:
void doNothing …
1
vote
2answers
190 views
Correct Implementation of Virtual Functions in PHP?
Hi guys,
at my working place (php only) we have a base class for database abstraction. When you want to add a new database table to the base layer, you have to create a subclass o …
2
votes
1answer
160 views
Covariant virtual functions and smart pointers
In C++, a subclass can specify a different return type when overriding a virtual function, as long as the return type is a subclass of the original return type (And both are return …
9
votes
9answers
969 views
Why C# implements methods as non-virtual by default?
Unlike Java, why C# treats methods as non-virtual functions by default? Is it more likely to be a performance issue rather than other possible outcomes?
I remind reading a paragra …
1
vote
8answers
613 views
Why would I want to use a pure virtual function in C++?
I'm learning about C++ in a class right now and I don't quite grok pure virtual functions. I understand that they are later outlined in a derived class, but why would you want to d …
2
votes
9answers
348 views
Practical usage of virtual functions in c#
What 's the practical usage of virtual functions in c#?
8
votes
4answers
383 views
Public virtual function derived private in C++
Hello All,
I was trying to figure out what happens when a derived class declares a virtual function as private. The following is the program that I wrote
#include <iostream> …
5
votes
7answers
447 views
Speeding up virtual function calls in gcc
Profiling my C++ code with gprof, I discovered that a significant portion of my time is spent calling one virtual method over and over. The method itself is short and could probab …
6
votes
6answers
910 views
Arduino C++ code: can you use virtual functions and exceptions?
Following up on this comment from the question Writing firmware: assembly or high level?:
When compiling C++ code for the Arduino platform, can you use virtual functions, excepti …
