Tagged Questions
10
votes
5answers
758 views
pure/const functions in C++
I'm thinking of using pure/const functions more heavily in my C++ code. (pure/const attribute in GCC)
However, I am curious how strict I should be about it and what could possibly break.
The most ...
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 ...
8
votes
2answers
457 views
pure/const functions in C++0x
In C++98/C++03, there are no pure/const function keywords in the language.
Has this changed in C++0x?
If so, is it possible to set such a flag even on function objects (std::function)? So I can pass ...
5
votes
1answer
811 views
pure/const function attributes in different compilers
pure is a function attribute which says that a function does not modify any global memory.
const is a function attribute which says that a function does not read/modify any global memory.
Given that ...
5
votes
1answer
150 views
Is it possible to write an impure template in C++?
Is it possible to write an impure template in C++? That is, a template that will sometimes give a different resulting type or int for the same template parameters. For example, is it possible to write ...
4
votes
4answers
107 views
Is it possible to write these pure_assert and const_assert macros?
The GCC __attribute__((pure)) and __attribute__((const)) allow functions to be declared as non–side-effecting and referentially transparent, respectively; let's say I want to write pure_assert ...
3
votes
4answers
240 views
Why doesn't GCC force parameters in __attribute__((pure)) functions to be const?
The following code compiles without warnings under GCC 4.2, and as far as I can tell, it really shouldn't:
#include <fstream>
__attribute__((pure))
double UnpureFunction(double* x) {
x[0] = ...
3
votes
3answers
743 views
C++: pure virtual assignment operator
why if we have pure virtual assignment operator in a base class, then we implement that operator on the derived class, it give linker error on the base class?
currently I only have the following ...
3
votes
2answers
335 views
In C++ is it possible to have a defined purely virtual function?
Here's the deal. I have a big class hierarchy and I have this one method that is extended all the way through. The method always has to look at one or two more variable at each new level and these ...
2
votes
4answers
160 views
interface overhead
I've a simple class that looks like Boost.Array. There are two template parameters T and N. One drawback of Boost.Array is, that every method that uses such an array, has to be a template with ...
2
votes
5answers
6k views
Difference between a virtual function and a pure virtual function [closed]
Possible Duplicate:
C++ Virtual/Pure Virtual Explained
Hi,
Need to know what is the difference between a pure virtual function and a virtual function?
I know "Pure Virtual Function is a ...
2
votes
4answers
378 views
What is the effect of overriding a (regular) virtual method by a pure virtual method?
Let's say we have
class A {
public:
virtual int foo() { cout << "foo!"; }
}
class B : public A {
public:
virtual int foo() =0;
}
class C : public B {
public:
...
1
vote
6answers
131 views
Can a class still be pure abstract if it has a non-pure destructor?
I am working on an exercise which asks me to take a base class Rodent and make it a pure abstract class. My understanding of a pure abstract class is that it acts as an interface and only contains ...
1
vote
6answers
226 views
How do I call all functions from sub-classes when they were defined as pure virtual in the super-class?
The main question is how do I implement startTest() so that it calls runTest in all the subclasses. Thanks!
/*******************
COMPILER TEST
*******************/
class archeTest
{
protected:
...
1
vote
3answers
248 views
How can a base class satisfy the definition of a parent's pure virtual function using another parent's function
I am extending an existing C++ project. I have a base class that derives from two parent classes. One of the parents has a pure virtual function. I want that pure virtual function to be defined by ...
1
vote
3answers
1k views
Pure virtual method called
I understand why calling a virtual function from a constructor is bad, but I'm not sure why defining a destructor would result in a "pure virtual method called" exception. The code uses const values ...
0
votes
1answer
129 views
C++ map.clear() pure virtual method runtime error
I believe the problem may stem from using boost::shared_ptrs as key values.
//header file:
#include <map>
std::map<boost::shared_ptr<foo>, bar> myMap; // Private member variable
...
0
votes
1answer
232 views
c++ forward declaration of pure virtual class
I have a forward deceleration problem. I had a normal class before, called GlobalCWND, it was instantiated and used in another class ProtocolContext.
I forward declare the ProtocolContext class in ...