"non-static" 的不同术语是什么?

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

我想添加一条评论说:// Here comes the block of non-static members.
但我想避免否定。所以我想用另一个术语来表示 "non-static"。

要明确:
我的意思是 "static" 就像 Integer.valueOf("42")
我的意思是 "non-static" 就像 anObject.equals(otherObject)

我正在 Java / xtend 中编码。但我认为这是一个普遍的问题。所以它可以处理任何语言。

我会把评论写成

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