javaterminologydefinitionxtend

What is a different term for "non-static"?


I would like to add a comment saying: // Here comes the block of non-static members.
But I would like to avoid negations. So I would like to use another term for "non-static".

To be clear:
I mean "static" like in Integer.valueOf("42")
I mean "non-static" like in anObject.equals(otherObject)

I'm coding in Java / xtend. But I think it is a general question. So it could address any language.


Solution

  • I would write the comment as

    // Here comes the block of instance members / methods.