vote up 10 vote down star
5

When discussing the qualifications for a position posting, I suggested that the major qualification for the new programmer would be "Implements the INinja Interface". Rousing approval followed. But what is the class definition?

Given that we are a C# house, I present the following for development:

interface INinja
{


}

What methods/properties/ make up this interface?

And for those who get on me for straying off-topic, I refer you to this page: http://blog.stackoverflow.com/2008/11/stack-overflow-is-you/

Made interface internal at Jon B's suggestion

I always forget that you can't set interface visibility levels in .Net

flag
Should be community wiki :) – Filip Ekberg Jan 27 at 19:35
Obligatory link to realultimatepower.net (probably NSFW) – Juliet Jan 27 at 19:36
I think I'd prefer the IRobot interface. – Jon Skeet Jan 27 at 19:47
Wouldn't that just create an instance of IAsimov? – KevDog Jan 29 at 16:16
1  
This leaves me curious as to what the definition of 'spam' is. – KevDog Jan 30 at 16:30

closed as spam by Jon B, Paul Tomblin, bdukes, mmattax Jan 30 at 3:51

19 Answers

vote up 4 vote down check
public void DoAwesomeNinjaMoveThatKillsInstantly();
public ~SummonJonSkeet(); // Will end in destruction.
link|flag
Pfft, you left off the types. What ninja would do that? – Cody Brocious Jan 27 at 19:28
I would suggest that Jon Skeet : INinja already. Yours would be a circular reference. – KevDog Jan 27 at 19:31
Hence that it's the destructor ! Not a part of the actuall interface! – Filip Ekberg Jan 27 at 19:31
Jon Skeet is sealed and inherits from no one. – Jon B Jan 27 at 19:33
That is why it is INinja : Jon Skeet – Filip Ekberg Jan 27 at 19:34
vote up 7 vote down

Given the spec at http://realultimatepower.net, these are required:

bool IsMammal() { return true; }
void FlipOut();
void KillPeople();
link|flag
Awesome, I just wanted to write that :0 – tobsen Jan 27 at 19:48
If IsMammal always returns true, how do you explain the Teenage Mutant Ninja Turtles? – Jon B Jan 27 at 20:18
@Jon B, DAMMIT, you got my brain in an infinite loop. – Filip Ekberg Jan 28 at 9:23
vote up 7 vote down
[Flags]
enum NinjaWeapon { Bo = 1, Wakizashi = 2, Ninjato = 4, Nunchaku = 8, Sai = 16, Shuriken = 32 }

[Flags]
enum EscapeMethod { SmokeBomb = 1, FlashBomb = 2, FlipOut = 4 }

interface INinja : IKickAss
{
    NinjaWeapon CurrentWeapons { get; set; };
    EscapeMethod CurrentEscapeMethod { get; set; };
    string Clan { get; };
    IPirate Nemesis { get; set; };

    void QueueAssassination(ITarget target);
    Queue<ITarget> AssassinationTargets { get; };
    bool DoNextAssassination();

    void QueueTheft(ITarget target);
    Queue<ITarget> TheftTargets { get; };
    bool DoNextTheft();
}
link|flag
vote up 6 vote down
internal interface INinja {}

Ninjas are supposed to be secretive and remain hidden. The interface should be internal, not public.

link|flag
Excellent point, that... – KevDog Jan 27 at 19:32
vote up 6 vote down
public interface INinja
{
}

Ninjas have no known properties or methods as no one can ever see one long enough to live and tell about it.

link|flag
vote up 4 vote down
// Double because Ninjas *need* that precision
private bool Jump(double height, bool doAttack); // XXX: Why is this bool?  Everyone knows ninjas never fail.
link|flag
vote up 4 vote down

Trivial, just use inheritance. Although, this may be too powerful. Perhaps it should be an abstract class implementation that throws NotImplementedException for some of the missing abilities.

   public interface INinja : IChuckNorris
   {
   }
link|flag
The compiler might not compile that - IChuckNorris won't compile to IntermediateLanguage but only to AdvancedLanguage - which doesn't exist for that very reason ;-) – tobsen Jan 27 at 20:02
I think you have the inheritance relationship backwards. No ninja can even hope to be Chuck Norris. – Kristopher Johnson Jan 28 at 3:34
vote up 2 vote down
internal string Name {get;} // A ninja doesn't have to reveal it's name outside his clan
link|flag
vote up 1 vote down

If only I could post empty text.

link|flag
There's no need to give your name -- it's right there already :) – Cody Brocious Jan 27 at 19:32
Oohhh i thought he were gonna throw "Messenger" on someone which would end up in killing the person. – Filip Ekberg Jan 27 at 19:32
vote up 1 vote down
WeaponSkill<BoStaff> BoStaffSkill { get; set; }
WeaponSkill<Nunchaku> NunchakuSkill { get; set; }
link|flag
vote up 0 vote down

First of all I'd like to add that in .NET an interface cannot specify visibility (private/public/protected/internal) of its members. If it could then they would all be private for an INinja. That said, here's another property:

ReadOnlyCollection<Place> CurrentLocation { get; } // A ninja can be many places at once, and none can make him go where he does not want to.
link|flag
vote up 0 vote down

Ninjas are so freakin' awesome, they only need two methods:

void ReadStakeholdersMinds(List<StakeHolder>) ;
void DoTheNeedful() ;
link|flag
vote up 0 vote down
public void Defeat(IPirate p); // should be IPirate for the different implementations like InternetPirate and AirPirate...

Obviously, if dependency injection is needed, Ninject would be used.

link|flag
Ninjas don't get defeated by Pirates! The method should be called "Obliterate" or something. :P – Vilx- Jan 27 at 19:49
vote up 0 vote down
public void SetNinjaKnowledge(TheInternet i);
public INinja Attack(object thingToDie); // returns itself so you can ninja.Attack(a).Attack(b).Attack(c)
link|flag
vote up 0 vote down
public interface INinja : IDisposable
{
    void Destroy<T>(object entryPoint, Predicate<T> istarget);
    IEnumerable<T> Steal<T>(object entryPoint, Predicate<T> istarget);
    bool SetTrust(INinja other, bool trust);
}

Ninjas may collaborate with other Ninjas, if they are trusted. Ninjas don't throw exceptions, they simply dispose of themselves. The only other case in which they will respond correctly to Dispose() is when a trusted INinja orders them to. Naturally, types implementing INinja should have lots of internal/protected/private properties and methods to aid in collaboration.

link|flag
vote up 0 vote down

public Invisibility{get; private set;}

link|flag
vote up 0 vote down

Like above, except the interface is private and so hidden from us to see...

private interface INinja { }

Also, I have a question. Am I wrong or Interface shouldn't contain any attribute like some people proposed...Unless my knowledge of interfaces is wrong...Or C# let us add more than just function member signatures?

link|flag
vote up 0 vote down
private void Seppuku()
link|flag
Seppuku is done by samurai, not by ninja, isn't it? – BeowulfOF Jan 27 at 21:18
Plus, wouldn't it need to be a public method? If the ninja fails his master, would this not be a command? Subject to authentication, of course. – KevDog Jan 27 at 21:29
1  
Well I think that seppuku really is a private matter. – Shawn Simon Jan 27 at 21:51
vote up 0 vote down
internal interface INinja : IStealth, IAttack //all ninjas do is hide and fight all the time 24/7
{

  IPlan EscapePlan { get; } //a ninja is instinctively born with a plan of attack and escape 
  IPlan AttackPlan { get; }

  IPoint CurrentLocation { get; set;}
  IPoint CurrentDate { get; set; }

  IWeapon CurrentWeapon { get; set; }
  IList<IWeapon> Weapons { get; set; }

  void Kill(ITarget target, IWeapon weapon); //for killing
  void Maim(ITarget target, IWeapon weapon); //for having mercy
  void Intimidate(ITarget target, IWeapon weapon); //for having fun

  void Hide();
  void Move(IPoint point);  //for jumping to any point in the universe instantaneously
  void Move(IPoint point, DateTime date); //for moving to any point at any time (past, present and future)

}
link|flag

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