vote up 1 vote down star
1

Given the following code:

Class User{
  Task m_Task;  
  public function getTask("Do work") { return m_Task; }
}

Class Project{
  Task m_Task;  
  public function getTask("Do work") { return m_Task; }
}

Class Task {
  private m_Name;
  public Task(name) { m_Name = name; }
}

Class Evil {
  new Task = Error
}

In a language that does not support multiple inheritance, nested classes, or private classes, (private constructor not an option), how can you design a requirement that Task is only ever instantiated through User or Project? Ideally using only language constructs instead of code. Is there a design pattern?

flag

73% accept rate
shudder I hate the "has a" and "is a" terms. – Brian Knoblauch Feb 18 at 20:31
Brian, why ? As is, they're clear and concise. Care to point out the other nomenclature ? – jim Feb 18 at 20:37
I don't think there's anything wrong with them, but you can say "inherits", "composes", and "aggregates" instead. – chaos Feb 18 at 20:40
@jim They seem clear on the surface, but once you go digging, there is a hidden vagueness and simplicity that can easily lure one into bad design. Chaos' options stand out better and make it harder for one to take the wrong path. – Brian Knoblauch Feb 18 at 20:49
Out of curiosity why are you trying to do this? – MSN Feb 18 at 20:56
show 1 more comment

2 Answers

vote up 0 vote down check

Not quite an answer, you can construct a task from elsewhere but you need a valid task instance to do it..

public class Task {
   public Task (User u, String name)
   {
     if (u==null) throw new UnsupportedOperationException("that's cheating");
     this.name=name;
   }
}

Utlimately, if you're creating the requirement that Task be external to user then something else needs to be able to load task's constructor so I don't think it's possible.

What's the purpose of this question? Does this relate in any way to some real-world situation?

link|flag
vote up 0 vote down

It seems somewhat quixotic, but I suppose you write Task a constructor that requires a User as an argument and does some handshaking back and forth to link the User to the Task, requiring that the User does not already have a Task.

link|flag

Your Answer

Get an OpenID
or

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