Tagged Questions
The virtual tag has no wiki summary.
217
votes
10answers
93k views
How to close/hide the Android Soft Keyboard?
I'm having an EditText and a Button in my layout. After writing inside the edit field and clicking on the Button, I want to hide the virtual keyboard. I guess there should be a simple, one- or ...
185
votes
9answers
18k views
Virtual member call in a constructor
I'm getting a warning from ReSharper about a call to a virtual member from my objects constructor. Why would this be something not to do?
33
votes
11answers
2k views
Why not have all the functions as virtual in C++?
I know that virtual functions have an overhead of dereferencing to call a method. But I guess with modern architectural speed it is almost negligible.
Is there any particular reason why all ...
33
votes
6answers
10k views
Why should I declare a virtual destructor for an abstract class in C++?
I know it is a good practice to declare virtual destructors for base classes in C++, but is it always important to declare virtual destructors even for abstract classes that function as interfaces? ...
32
votes
9answers
1k views
A question about virtual mechanism in C++
C++ supports dynamic binding through virtual mechanism. But as I understand the virtual mechanism is an implementation detail of the compiler and the standard just specifies the behaviors of what ...
30
votes
13answers
3k views
Why pure virtual function is initialized by 0?
We always declare a pure virtual function as :
virtual void fun () = 0 ;
i.e. it is always assigned to 0.
What I understand is that this is to initialize the vtable entry for this function to ...
28
votes
5answers
7k views
When to use virtual destructors?
I have a solid understanding of most OO theory but the one thing that confuses me a lot is virtual destructors.
I thought that the destructor always gets called no matter what and for every object in ...
26
votes
9answers
10k views
Are inline virtual functions really a non-sense?
I got this question when I received a code review comment saying virtual functions need not be inline.
I thought inline virtual functions could come in handy in scenarios where functions are called ...
19
votes
6answers
1k views
19
votes
4answers
7k views
Can I call a base class's virtual function if I'm overriding it?
Say I have class Foo and Bar set up like this:
class Foo
{
public:
int x;
virtual void printStuff()
{
std::cout << x << std::endl;
}
};
class Bar : public Foo
{
...
16
votes
7answers
1k views
Why are private virtual methods illegal in C#?
Coming from a C++ background, this came as a surprise to me. In C++ it's good practice to make virtual functions private. From http://www.gotw.ca/publications/mill18.htm: "Guideline #2: Prefer to make ...
16
votes
7answers
5k views
C++ Virtual/Pure Virtual Explained
I'm a little familiar with C++, but the virtual keyword still confuses me. What exactly does it mean? If a function is defined as virtual, is that the same as pure virtual?
16
votes
7answers
7k views
Accessing class members on a NULL pointer
I was experimenting with C++ and found the below code as very strange.
class Foo{
public:
virtual void say_virtual_hi(){
std::cout << "Virtual Hi";
}
void say_hi()
{
...
15
votes
3answers
1k views
How to limit memory of a OS X program? ulimit -v neither -m are working
My programs run out of memory like half of the time I run them. Under Linux I can set a hard limit to the available memory using ulimit -v mem-in-kbytes. Actually, I use ulimit -S -v mem-in-kbytes, so ...
15
votes
4answers
11k views
virtual assignment operator C++
Assignment Operator in C++ can be made virtual. Why is it required? Can we make other operators virtual too?
14
votes
7answers
3k views
Why are C# interface methods not declared abstract or virtual?
C# methods in interfaces are declared without using the virtual keyword, and overridden in the derived class without using the override keyword.
Is there a reason for this? I assume that it is just ...
14
votes
4answers
1k views
Why does virtual assignment behave differently than other virtual functions of the same signature?
While playing with implementing a virtual assignment operator I have ended with a funny behavior. It is not a compiler glitch, since g++ 4.1, 4.3 and VS 2005 share the same behavior.
Basically, the ...
13
votes
4answers
448 views
How can C++ virtual functions be implemented except vtable? [closed]
Possible Duplicate:
A question about virtual mechanism in C++
Is using vtable the only way to implement virtual member functions mechanism in C++? What other ways exist?
13
votes
4answers
511 views
Force virtual destructors? C++
I didnt see it in the C++ Faq lite
How do i define a base class so every class inheriting it is required to define a destructor?
I tried running this program
struct VDtor { virtual ~VDtor()=0; };
...
13
votes
7answers
2k views
Interview question about virtual functions in C++
I was asked this crazy question.
I was out of my wits.
Can a method in base class which is declared as virtual be called using the base class pointer which is pointing to a derived class object?
Is ...
13
votes
10answers
4k views
C++ static virtual members?
Is it possible in C++ to have a member function that is both static and virtual? Apperantly, there isn't a straight-forward way to do it (static virtual member(); is a complie error), but at least a ...
13
votes
5answers
1k views
C++ Style: Prefixing virtual keyword to overridden methods
I've been having a discussion with my coworkers as to whether to prefix overridden methods with the virtual keyword, or only at the originating base class.
I tend to prefix all virtual methods (that ...
12
votes
4answers
272 views
C++ return type when I don't know if it's temporary
Suppose that Foo is a rather large data structure. How should I write a const virtual function that returns an instance of Foo, if I don't know whether the inherited classes will store the instance of ...
12
votes
4answers
911 views
C++ “virtual” keyword for functions in derived classes. Is it necessary?
With the struct definition given below...
struct A {
virtual void hello() = 0;
};
Approach #1:
struct B : public A {
virtual void hello() { ... }
};
Approach #2:
struct B : public A {
...
12
votes
5answers
441 views
vftable performance penalty vs. switch statement
C++ question here. I have a system where I'm going to have hundreds of mini-subclasses of a given superclass. They all will have a "foo" method that does something. Or... I'm going to have one ...
12
votes
5answers
5k views
CRTP to avoid dynamic polymorphism
How can I use CRTP in C++ to avoid the overhead of virtual member functions?
12
votes
14answers
940 views
Back-end choice for a new dynamic programming language?
I've been developing a Smalltalk variant for just the fun of it and I wonder what would be a fellow stackoverflowers choice when it comes to targeting a back-end. These were my current considerations:
...
11
votes
3answers
286 views
Virtual tables on anonymous classes
I have something similar to this in my code:
#include <iostream>
#include <cstdlib>
struct Base
{
virtual int Virtual() = 0;
};
struct Child
{
struct : public Base
{
virtual ...
11
votes
4answers
523 views
In C++, is a function automatically virtual if it overrides a virtual function?
I would expect that if foo is declared in class D, but not marked virtual, then the following code would call the implementation of foo in D (regardless of the dynamic type of d).
D& d = ...;
...
11
votes
3answers
3k views
C++ member function virtual override and overload at the same time
If I have a code like this:
struct A {
virtual void f(int) {}
virtual void f(void*) {}
};
struct B : public A {
void f(int) {}
};
struct C : public B {
void f(void*) {}
};
int main() {
...
10
votes
3answers
334 views
C++ virtual override functions with same name
I have something like that (simplified)
class A
{
public:
virtual void Function () = 0;
};
class B
{
public:
virtual void Function () = 0;
};
class Impl : public A , public B
{
...
10
votes
4answers
932 views
Confused about “override” vs. “new” in C#
I'm having the following classes:
class Base
{
public virtual void Print()
{
Console.WriteLine("Base");
}
}
class Der1 : Base
{
public new virtual void Print()
{
...
10
votes
4answers
1k views
How to design a C++ API for binary compatible extensibility
I am designing an API for a C++ library which will be distributed in a dll / shared object. The library contains polymorhic classes with virtual functions. I am concerned that if I expose these ...
10
votes
7answers
5k views
C++ virtual function from constructor
Why the following example prints "0" and what must change for it to print "1" as I expected ?
#include <iostream>
struct base {
virtual const int value() const {
return 0;
}
...
10
votes
6answers
6k views
How to translate a virtual memory address to a physical address?
In my C++ program (on Windows), I'm allocating a block of memory and can make sure it stays locked (unswapped and contiguous) in physical memory (i.e. using VirtualAllocEx(), MapUserPhysicalPages() ...
9
votes
4answers
151 views
Is there a way to not inherit “virtualness” of a function in a subclass?
Is it possible in C++ to have a class override a virtual function, but only have virtual dispatch when the function is called through the superclass (ie. not when it is called on something statically ...
9
votes
10answers
463 views
When should a virtual method be pure?
I have found some code that I am working with, and was wondering what the best design implementation is.
If a base class defines a method as virtual, but implements a empty body as well, thus not ...
9
votes
2answers
140 views
Can a compiler inline a virtual function if I use a pointer in a clear situation?
I've already read Are inline virtual functions really a non-sense?. But I still have some doubts and found no the answers there.
They say that if situation isn't ambiguous, compiler should inline the ...
9
votes
2answers
225 views
Overload resolution of virtual methods
Consider the code
public class Base
{
public virtual int Add(int a,int b)
{
return a+b;
}
}
public class Derived:Base
{
public override int Add(int a,int b)
{
return a+b;
...
9
votes
4answers
147 views
overloading virtual operator -> ()
This is just an experiment code.
struct B
{
virtual B* operator -> () { return this; }
void foo () {} // edit: intentionally NOT virtual
};
struct D : B
{
virtual D* operator -> () { ...
9
votes
5answers
1k views
Pure virtual methods in C#?
I've been told to make my class abstract:
public abstract class Airplane_Abstract
And to make a method called move virtual
public virtual void Move()
{
//use the property to ...
9
votes
6answers
629 views
Should virtual methods be explicitly overridden in C#?
Why should virtual methods be explicitly overridden in C#?
9
votes
5answers
908 views
print address of virtual member function
I am trying to print the address of a virtual member function.
If I only wants to print the address of the function I can write:
print("address: %p", &A::func);
But I want to do something like ...
9
votes
12answers
451 views
Why methods in C# are not automatically virtual? [closed]
Possible Duplicate:
Why C# implements methods as non-virtual by default?
It would be much more less work to define which methods are NOT overideable instead of which are overideable because ...
9
votes
5answers
1k views
Calling the overriden method from the base class in C#
Given the following C# class definitions and code:
public class BaseClass
{
public virtual void MyMethod()
{
...do something...
}
}
public class A : BaseClass
{
public ...
9
votes
4answers
5k views
Is there a way to mount Android .img to access the AVD (Android Virtual Device) contents?
I feel a bit blind developing on an emulator for Android and not being able to see the file system on the AVD (.img).
Is there a way to mount it in Windows or Linux, so that I could at least see the ...
9
votes
8answers
3k views
Should every class have a virtual destructor?
Java and C# support the notion of classes that can't be used as base classes with the final and sealed keywords. In C++ however there is no good way to prevent a class from being derived from which ...
9
votes
8answers
561 views
Elegant Object comparison
When comparing two objects (of the same type), it makes sense to have a compare function which takes another instance of the same class. If I implement this as a virtual function in the base class, ...
8
votes
2answers
127 views
How to be warned when overriding a virtual method with wrong visibility
When overriding a virtual method, I noticed that when I make a mistake in the visibility (protected method overridden as a public method), I'm not warned by the compiler.
It is valid C++, but usually ...
8
votes
4answers
297 views
How does the compiler internally solve the diamond problem in C++?
We know that we can solve the diamond problem using virtual inheritance.
For example:
class Animal // base class
{
int weight;
public:
int getWeight() { return weight;};
};
...