Java fx 中的 binding探索

Binding在fx的使用


Binding的概念

soldPrice = listPrice - discounts + taxes
通過這個表達式,如果你知道listPrice, discounts, taxes, 你是不是很快能計算出soldPrice? 這就是一個binding的關(guān)系,反之如果你知道了一個soldPrice,你能推算出其他3項嗎镀娶?答案是no. 這里為我們揭示了binding中存在方向的概念写穴,是單向 or 雙向。


NumberBinding

  1. 利用property對象返回一個NumberBinding對象,當它的值沒有被計算出來,它是invalid:
//NumberBinding
IntegerProperty digit1 = new SimpleIntegerProperty(1);
IntegerProperty digit2 = new SimpleIntegerProperty(2);
NumberBinding numberBinding = digit1.add(digit2);
System.out.println("sum.isValid(): " + sum.isValid());
System.out.println(sum.getValue());
System.out.println("sum.isValid(): " + sum.isValid());
Paste_Image.png

2.或者它依賴的propery更新的時候牙咏,它也會失效

digit1.set(3);
System.out.println("sum.isValid(): " + sum.isValid());
Paste_Image.png

Binding in String

  1. 直接使用property
//StringBinding
StringProperty str1 = new SimpleStringProperty("11");
StringProperty str2 = new SimpleStringProperty("22");
StringProperty str3 = new SimpleStringProperty("33");
str3.bind(str1.concat(str2));
System.out.println(str3.get()); 

2.使用StringExpression

StringProperty str1 = new SimpleStringProperty("11");
StringProperty str2 = new SimpleStringProperty("22");
StringExpression desc = str1.concat(str2);
System.out.println(desc .get());    

3.使用String binding

StringProperty str1 = new SimpleStringProperty("11");
StringProperty str2 = new SimpleStringProperty("22");
StringBinding strBinding = new StringBinding() {
                  {
                  bind(str1.concat(str2));
              }
            @Override
            protected String computeValue() {
                return str1.concat(str2).get();
            }};
System.out.println("StringBinding: + " + strBinding.getValue());
str2.set("22");
System.out.println("StringBinding: + " + strBinding.getValue());

Binding of boolean

通過property之間的邏輯方法比較構(gòu)造。

Book b1 = new Book("J1", 90, "1234567890");
Book b2 = new Book("J2", 80, "0123456789");
ObjectProperty<Book> book1 = new SimpleObjectProperty<>(b1);
ObjectProperty<Book> book2 = new SimpleObjectProperty<>(b2);
// Create a binding that computes if book1 and book2 are equal
BooleanBinding isEqual = book1.isEqualTo(book2);
System.out.println(isEqual.get());// false
book2.set(b1);
System.out.println(isEqual.get());// true
IntegerProperty x = new SimpleIntegerProperty(1);
IntegerProperty y = new SimpleIntegerProperty(2);
IntegerProperty z = new SimpleIntegerProperty(3);
// Create a boolean expression for x > y && y <> z
BooleanExpression condition = x.greaterThan(y).and(y.isNotEqualTo(z));
System.out.println(condition.get());// false
// Make the condition true by setting x to 3
x.set(3);
System.out.println(condition.get());// true

單向綁定以及雙向綁定

單向綁定實例 (C = A X B)

單向綁定只受綁定對象的影響寥假,Binding對象(或這屬性)自身的變化不影響綁定對象。

public class BoundProperty {
    public static void main(String[] args) {
        IntegerProperty x = new SimpleIntegerProperty(10);
        IntegerProperty y = new SimpleIntegerProperty(20);
        IntegerProperty z = new SimpleIntegerProperty(60);
        z.bind(x.add(y));
        System.out.println("After binding z: Bound = " + z.isBound() + ", z = "
                + z.get());
        // Change x and y
        x.set(15);
        y.set(19);
        System.out.println("After changing x and y: Bound = " + z.isBound()
                + ", z = " + z.get());
        // Unbind z
        z.unbind();
        // Will not affect the value of z as it is not bound to x and y anymore
        x.set(100);
        y.set(200);
        System.out.println("After unbinding z: Bound = " + z.isBound()
                + ", z = " + z.get());
    }
}
Paste_Image.png

雙向綁定

雙向綁定霞扬,改變?nèi)魏我环矫林迹紩|發(fā)另一方的改變,給予這種前提(X=Y), 兩邊必須是同一類型祥得。

一個簡單的例子:

public class BidirectionalBinding {
    public static void main(String[] args) {
        IntegerProperty x = new SimpleIntegerProperty(1);
        IntegerProperty y = new SimpleIntegerProperty(2);
        IntegerProperty z = new SimpleIntegerProperty(3);

        System.out.println("Before binding:");
        System.out.println("x=" + x.get() + ", y=" + y.get() + ", z=" + z.get());

        x.bindBidirectional(y);
        System.out.println("After binding-1:");
        System.out.println("x=" + x.get() + ", y=" + y.get() + ", z=" + z.get());

        x.bindBidirectional(z);
        System.out.println("After binding-2:");
        System.out.println("x=" + x.get() + ", y=" + y.get() + ", z=" + z.get());

        System.out.println("After changing z:");
        z.set(19);
        System.out.println("x=" + x.get() + ", y=" + y.get() + ", z=" + z.get());

        // Remove bindings
        x.unbindBidirectional(y);
        x.unbindBidirectional(z);
        System.out.println("After unbinding and changing them separately:");
        x.set(100);
        y.set(200);
        z.set(300);
        System.out.println("x=" + x.get() + ", y=" + y.get() + ", z=" + z.get());
    }
}
Paste_Image.png

流式API

流式 API 是Java fx 在Binding提供的福利 API. 通過這些API,可以向DSL 一樣描述 依賴關(guān)系蒋得。

public class FluentAPITest {

    public static void main(String[] args) {
        
        //String property
        StringProperty s1 = new SimpleStringProperty("XX");
        StringProperty s2 = new SimpleStringProperty("qq");
        StringExpression s3 = s1.concat(s2);
        System.out.println(s3.get());
        
        //Number property
        IntegerProperty i1 = new SimpleIntegerProperty(4);
        IntegerProperty i2 = new SimpleIntegerProperty(2);
        IntegerProperty i3 = new SimpleIntegerProperty(2);
        IntegerBinding ib = (IntegerBinding) i1.add(i2).subtract(i2).multiply(i2).divide(i3);
        System.out.println(ib.get());
        
        //Boolean Property
        BooleanProperty b1 = new SimpleBooleanProperty(false);
        BooleanProperty b2 = new SimpleBooleanProperty(true);
        BooleanBinding b3 = b1.isEqualTo(b2).isNotEqualTo(b2).not().not();
        System.out.println(b3.get());
    }
}
Paste_Image.png

三元 API 操作

new When(condition).then(value1).otherwise(value2)
condition對象必須實現(xiàn)了ObservableBooleanValue接口

public class TernaryTest {
    public static void main(String[] args) {
        IntegerProperty num = new SimpleIntegerProperty(10);
        StringBinding desc = new When(num.divide(2).multiply(2).isEqualTo(num)).then("even").otherwise("odd");
        System.out.println(num.get() + " is " + desc.get());
        num.set(19);
        System.out.println(num.get() + " is " + desc.get());
    }
}
Paste_Image.png

Binding Utility Class

Bingdings 類中包含之前提及全部流式API(諸如add,sustract,multiply,divide,concat,eqaul 等等).如果你不喜歡用流式API的寫法级及,也可以用通過調(diào)用Bindings的方法的來滿足你創(chuàng)建所需的binding.

public class BindingsClassTest {
    public static void main(String[] args) {
        DoubleProperty radius = new SimpleDoubleProperty(7.0);
        DoubleProperty area = new SimpleDoubleProperty(0.0);

        // Bind area to an expression that computes the area of the circle
        area.bind(Bindings.multiply(Bindings.multiply(radius, radius), Math.PI));
        // Create a string expression to describe the circle
        StringExpression desc = Bindings.format(Locale.US, "Radius = %.2f, Area = %.2f", radius, area);
        System.out.println(desc.get());

        // Change the radius
        radius.set(14.0);
        System.out.println(desc.getValue());
    }
}
Paste_Image.png

與UI 之間的binding

講了這么多,如果你看過java fx 源碼额衙, 你猜到j(luò)ava fx 是如何實現(xiàn)UI 與 Model 的 data binding 嗎饮焦?
其實java fx ui 類 的所有屬性 基本上是 實現(xiàn)了property接口的對象怕吴。
比如 textField的textProperty,再比如

public class ChoicBindingExample extends Application {
  ObservableList cursors = FXCollections.observableArrayList(
      Cursor.DEFAULT,
      Cursor.CROSSHAIR,
      Cursor.WAIT,
      Cursor.TEXT,
      Cursor.HAND,
      Cursor.MOVE,
      Cursor.N_RESIZE,
      Cursor.NE_RESIZE,
      Cursor.E_RESIZE,
      Cursor.SE_RESIZE,
      Cursor.S_RESIZE,
      Cursor.SW_RESIZE,
      Cursor.W_RESIZE,
      Cursor.NW_RESIZE,
      Cursor.NONE
    ); 
    @Override
    public void start(Stage stage) {
      ChoiceBox choiceBoxRef = ChoiceBoxBuilder.create()
          .items(cursors)
          .build();    
        VBox box = new VBox();
        box.getChildren().add(choiceBoxRef);
        final Scene scene = new Scene(box,300, 250);
        scene.setFill(null);
        stage.setScene(scene);
        stage.show();
        scene.cursorProperty().bind(choiceBoxRef.getSelectionModel().selectedItemProperty());
        
    }
    public static void main(String[] args) {
        launch(args);
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市县踢,隨后出現(xiàn)的幾起案子转绷,更是在濱河造成了極大的恐慌,老刑警劉巖硼啤,帶你破解...
    沈念sama閱讀 212,686評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件议经,死亡現(xiàn)場離奇詭異,居然都是意外死亡谴返,警方通過查閱死者的電腦和手機煞肾,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,668評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來嗓袱,“玉大人籍救,你說我怎么就攤上這事∏ǎ” “怎么了蝙昙?”我有些...
    開封第一講書人閱讀 158,160評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長梧却。 經(jīng)常有香客問我奇颠,道長,這世上最難降的妖魔是什么篮幢? 我笑而不...
    開封第一講書人閱讀 56,736評論 1 284
  • 正文 為了忘掉前任大刊,我火速辦了婚禮,結(jié)果婚禮上三椿,老公的妹妹穿的比我還像新娘缺菌。我一直安慰自己,他們只是感情好搜锰,可當我...
    茶點故事閱讀 65,847評論 6 386
  • 文/花漫 我一把揭開白布伴郁。 她就那樣靜靜地躺著,像睡著了一般蛋叼。 火紅的嫁衣襯著肌膚如雪焊傅。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,043評論 1 291
  • 那天狈涮,我揣著相機與錄音狐胎,去河邊找鬼。 笑死歌馍,一個胖子當著我的面吹牛握巢,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播松却,決...
    沈念sama閱讀 39,129評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼暴浦,長吁一口氣:“原來是場噩夢啊……” “哼溅话!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起歌焦,我...
    開封第一講書人閱讀 37,872評論 0 268
  • 序言:老撾萬榮一對情侶失蹤飞几,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后独撇,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體屑墨,經(jīng)...
    沈念sama閱讀 44,318評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,645評論 2 327
  • 正文 我和宋清朗相戀三年券勺,在試婚紗的時候發(fā)現(xiàn)自己被綠了绪钥。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,777評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡关炼,死狀恐怖程腹,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情儒拂,我是刑警寧澤寸潦,帶...
    沈念sama閱讀 34,470評論 4 333
  • 正文 年R本政府宣布,位于F島的核電站社痛,受9級特大地震影響见转,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜蒜哀,卻給世界環(huán)境...
    茶點故事閱讀 40,126評論 3 317
  • 文/蒙蒙 一斩箫、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧撵儿,春花似錦乘客、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,861評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至浪默,卻和暖如春牡直,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背纳决。 一陣腳步聲響...
    開封第一講書人閱讀 32,095評論 1 267
  • 我被黑心中介騙來泰國打工碰逸, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人阔加。 一個月前我還...
    沈念sama閱讀 46,589評論 2 362
  • 正文 我出身青樓花竞,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子约急,可洞房花燭夜當晚...
    茶點故事閱讀 43,687評論 2 351

推薦閱讀更多精彩內(nèi)容

  • 1. Java基礎(chǔ)部分 基礎(chǔ)部分的順序:基本語法,類相關(guān)的語法苗分,內(nèi)部類的語法厌蔽,繼承相關(guān)的語法,異常的語法摔癣,線程的語...
    子非魚_t_閱讀 31,602評論 18 399
  • //Clojure入門教程: Clojure – Functional Programming for the J...
    葡萄喃喃囈語閱讀 3,636評論 0 7
  • java筆記第一天 == 和 equals ==比較的比較的是兩個變量的值是否相等奴饮,對于引用型變量表示的是兩個變量...
    jmychou閱讀 1,490評論 0 3
  • 【程序1】 題目:古典問題:有一對兔子,從出生后第3個月起每個月都生一對兔子择浊,小兔子長到第三個月后每個月又生一對兔...
    葉總韓閱讀 5,129評論 0 41
  • 文 cherry 三歲的時候桌子上放著一顆咸蛋穿著青蛙服的我咿咿呀呀地指著它問奶奶是什么奶奶說那是咸蛋 給你爸爸吃...
    韻之筆閱讀 514評論 0 0