真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

squirrel-foundation有限狀態(tài)機(jī)的詳細(xì)介紹

這篇文章主要講解了“squirrel-foundation有限狀態(tài)機(jī)的詳細(xì)介紹”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“squirrel-foundation有限狀態(tài)機(jī)的詳細(xì)介紹”吧!

成都創(chuàng)新互聯(lián)主要從事網(wǎng)站設(shè)計、成都網(wǎng)站設(shè)計、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)鄞州,10多年網(wǎng)站建設(shè)經(jīng)驗(yàn),價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18980820575

什么是有限狀態(tài)機(jī)

有限狀態(tài)機(jī):是一種用來進(jìn)行對象行為建模的工具,其作用主要是描述對象在它的生命周期內(nèi)所經(jīng)歷的狀態(tài)序列,以及如何響應(yīng)來自外界的各種事件。在計算機(jī)科學(xué)中,有限狀態(tài)機(jī)被廣泛用于建模應(yīng)用行為、硬件電路系統(tǒng)設(shè)計、軟件工程,編譯器、網(wǎng)絡(luò)協(xié)議、和計算與語言的研究

本文主要學(xué)習(xí)java的一個開源實(shí)現(xiàn) squirrel-foundation 狀態(tài)機(jī)

狀態(tài)機(jī)的要素

1
現(xiàn)態(tài)、條件、動作、次態(tài)?!艾F(xiàn)態(tài)”和“條件”是因,“動作”和“次態(tài)”是果

為什么使用狀態(tài)機(jī)

一般來說,隨著項(xiàng)目的發(fā)展,代碼變得越來越復(fù)雜,狀態(tài)之間的關(guān)系,轉(zhuǎn)化變得越來越復(fù)雜,比如訂單系統(tǒng)狀態(tài),活動系統(tǒng)狀態(tài)等。產(chǎn)品或者開發(fā)很難有一個人能夠梳理清楚整個狀態(tài)的全局. 使用狀態(tài)機(jī)來管理對象生命周期可以使得代碼具有更好的可讀性,可維護(hù)性,以及可測試性。

1
有限狀態(tài)機(jī)是一種對象行為建模工具,適用對象有一個明確并且復(fù)雜的生命流(一般而言三個以上狀態(tài)),并且在狀態(tài)變遷存在不同的觸發(fā)條件以及處理行為。

先來看squirrel-foundation github 上面給出的例子,對狀態(tài)機(jī)有一個直觀的認(rèn)識



demo

添加maven 依賴

1
2
3
4
5
6


    org.squirrelframework
    squirrel-foundation
    0.3.8

QuickStartSample demo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import org.squirrelframework.foundation.fsm.StateMachineBuilderFactory;
import org.squirrelframework.foundation.fsm.UntypedStateMachine;
import org.squirrelframework.foundation.fsm.UntypedStateMachineBuilder;
import org.squirrelframework.foundation.fsm.annotation.StateMachineParameters;
import org.squirrelframework.foundation.fsm.impl.AbstractUntypedStateMachine;

/**
 * @Author wtx
 * @Date 2019/5/5
 */
public class QuickStartSample {
    // 1. Define State Machine Event
    enum FSMEvent {
        ToA, ToB, ToC, ToD
    }

    // 2. Define State Machine Class
    @StateMachineParameters(stateType=String.class, eventType=FSMEvent.class, contextType=Integer.class)
    static class StateMachineSample extends AbstractUntypedStateMachine {
        protected void fromAToB(String from, String to, FSMEvent event, Integer context) {
            System.out.println("Transition from '"+from+"' to '"+to+"' on event '"+event+
                    "' with context '"+context+"'.");
        }

        protected void ontoB(String from, String to, FSMEvent event, Integer context) {
            System.out.println("Entry State \'"+to+"\'.");
        }
    }

    public static void main(String[] args) {
        // 3. Build State Transitions
        UntypedStateMachineBuilder builder = StateMachineBuilderFactory.create(StateMachineSample.class);
        builder.externalTransition().from("A").to("B").on(FSMEvent.ToB).callMethod("fromAToB");
        builder.onEntry("B").callMethod("ontoB");

        // 4. Use State Machine
        UntypedStateMachine fsm = builder.newStateMachine("A");
        fsm.fire(FSMEvent.ToB, 10);

        System.out.println("Current state is "+fsm.getCurre5ntState());
    }
}

定義StateMachineBuilderFactory

首先使用StateMachineBuilderFactory構(gòu)造一個UntypedStateMachineBuilder,然后builder.externalTransition(),builder除了externalTransition還有internalTransition(),

.from(“A”).to(“B”).on(FSMEvent.ToB).callMethod(“fromAToB”);
當(dāng)狀態(tài)在A 發(fā)生 ToB 事件時,調(diào)用 方法fromAToB,然后狀態(tài)轉(zhuǎn)化到 B。
builder.onEntry(“B”).callMethod(“ontoB”);
當(dāng)狀態(tài)轉(zhuǎn)移到B 時,調(diào)用方法ontoB。

構(gòu)造UntypedStateMachine fsm

1
2
3
UntypedStateMachine fsm = builder.newStateMachine("A");
// 觸發(fā)ToB事件
fsm.fire(FSMEvent.ToB, 10);

獲取當(dāng)前狀態(tài)

1
fsm.getCurrentState()

感謝各位的閱讀,以上就是“squirrel-foundation有限狀態(tài)機(jī)的詳細(xì)介紹”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對squirrel-foundation有限狀態(tài)機(jī)的詳細(xì)介紹這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!


分享標(biāo)題:squirrel-foundation有限狀態(tài)機(jī)的詳細(xì)介紹
網(wǎng)頁路徑:http://weahome.cn/article/gjcegs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部