I am working on a small library, where I have following requirements for any class X:

  1. class X must be allocatable only using operator new
  2. All the children of class X should implicitly become allocatable only by operator new
  3. The syntax for heap allocation should be elegant
  4. Not much of the existing code should be changed to incorporate this
  5. After some point of time, if I want to allow class X to be allocatable as automatic; again not much code should be changed

I also welcome C++0x solutions (for future use only).

[Note: I have done my part of research and will be posting it as an answer (tested for basic scenarios)]

link|improve this question

2  
@iammilind: If you already have an solution, Are you posting this as an test for others? If not, post your approach and then ask for comments that critic or support it. – Als Aug 13 '11 at 7:38
What do you mean by "not much existing code should be changed"? We don't know what your existing code is, so we can't tell you how much change there will be. – freedompeace Aug 13 '11 at 7:41
@cdhowie, that is not duplicate. I am not getting my answer there. My requirements are different and I have listed them properly. – iammilind Aug 13 '11 at 7:45
@Als, No I am not testing others; I wanted to have ideas from others. I already mentioned that will put my solution as one of the answers (as there can be better than that too). Which I have posted. – iammilind Aug 13 '11 at 7:46
show 5 more comments
feedback

closed as not a real question by cdhowie, Als, freedompeace, Armen Tsirunyan, Benjamin Lindley Aug 13 '11 at 8:31

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

up vote 2 down vote accepted
// Dynamic.h
class OnlyDynamic
{
  template<class T> friend struct Dynamic;
  virtual void*** __Restriction () = 0;
};

template<class T>
class Dynamic : public T
{ 
  virtual void*** __Restriction () { return 0; }
  ~Dynamic();
public:
#ifdef Cpp0x
  template<typename... Args>
  Dynamic(Args... args) : T(args...) {}
#else
  Dynamic () {}
  template<typename A1> Dynamic(const A1 &a1) : T(a1) {}
  template<typename A1, typename A2> Dynamic(const A1 &a1, const A2 &a2) : T(a1,a2) {}
//...
  template<typename A1, typename A2, typename A3, typename A4, typename A5, typename A6>
  Dynamic(const A1 &a1, const A2 &a2, const A3 &a3, const A4 &a4, const A5 &a5, const A6 &a6) : T(a1,a2,a3,a4,a5,a6) {}
#endif 
};

Usage:


Suppose, I want to make class X only dynamically allocatable; I should simply derive OnlyDynamic (access specifier doesn't matter) and allocate with new Dynamic<X>().

Example:

class Base {};

struct A : Base, OnlyDynamic  // <-- only inherit
{
  A (int i) {}
};

A *p = new Dynamic<A>(3);
delete p;

As of now, I am seeing all the given requirements getting fulfilled with this solution.

link|improve this answer
This doesn't meet the requirements as you descirbed them. class A is not allocatable at all, dynamically or otherwise. – Benjamin Lindley Aug 13 '11 at 8:32
@Benjamin, new Dynamic<A>(3) gives the same effect as new A(3) (as we know that, literally if I do new A(3) then it will break lots of other requirements). Still, I would be glad to hear any problem you see, before it goes to production code. – iammilind Aug 13 '11 at 8:40
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.