Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
エキスパンドのクラスを動的に設定することは可能ですか??
設定した
jr = new Expando()
する方法はありますか
def end = 'name'
となることによって
jr.end
実際に格納されている値が表示されます
jr.name
同時に値を割り当てる必要があります。どっ!
def value = 'some value' jr."$end" = value
私はあなたの質問を理解しているかどうかわかりません。おそらくこれが役に立ちます
jr = new Expando() jr.end = 'name' jr.name = jr.end assert jr.end == jr.name assert jr.end == 'name'