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.
私はそれについて多くのことを読みましたが、状態がどのような順序で (複合状態で) 実行されるのか、そして深い歴史と浅い歴史がどのように機能するのかはまだわかりませんか? 誰でも私を助けることができますか?例がありますが、解決方法がわかりません。これは次のとおりです。
助けていただければ幸いです。
e7以降
x の値 (出口 Y):x = x / 2 = 1
x = x / 2 = 1
x の値 (エントリ A):x = x * 2 = 2
x = x * 2 = 2
x の値 (エントリ A::C 上記の注を参照):x = x + 1 = 3
x = x + 1 = 3
x の値 (エントリ A::C::G):x = x + 1 = 4
x = x + 1 = 4
新しい状態: A::C::G