3

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.

armin.miedl
  • 1,070
  • 1
  • 11
  • 16

1 Answers1

3

I would write the comment as

// Here comes the block of instance members / methods.
Gereon
  • 17,258
  • 4
  • 42
  • 73