IT博客汇
  • 首页
  • 精华
  • 技术
  • 设计
  • 资讯
  • 扯淡
  • 权利声明
  • 登录 注册

    JavaFX PropertyTest2

    天下发表于 2020-01-01 05:19:00
    love 0
    package application.chapter2;

    import javafx.beans.property.IntegerProperty;
    import javafx.beans.property.SimpleIntegerProperty;
    import javafx.beans.value.ObservableValue;

    public class PropertyTest2 {

        public static void main(String[] args) {
            IntegerProperty counter = new SimpleIntegerProperty(100);
            // Add an invalidation listener to the counter property
            counter.addListener(PropertyTest2::changed);
            System.out.println("Before changing the counter value-1");
            counter.set(101);
            System.out.println("After changing the counter value-1");
            /*
             * At this point counter property is invalid and further changes to its value
             * will not generate invalidation events.
             
    */
            System.out.println("\nBefore changing the counter value-2");
            counter.set(102);
            System.out.println("After changing the counter value-2");
            // Make the counter property valid by calling its get() method
            int value = counter.get();
            System.out.println("Counter value = " + value);
            /*
             * At this point counter property is valid and further changes to its value will
             * generate invalidation events.
             
    */
            // Try to set the same value
            System.out.println("\nBefore changing the counter value-3");
            counter.set(102);
            System.out.println("After changing the counter value-3");
            // Try to set a different value
            System.out.println("\nBefore changing the counter value-4");
            counter.set(103);
            System.out.println("After changing the counter value-4");
        }

        public static void changed(ObservableValue<? extends Number> prop,Number oldValue,Number newValue) {
            System.out.print("Counter changed: ");
            System.out.println("Old = " + oldValue + ", new = " + newValue);
        }
    }


    天下 2020-01-01 13:19 发表评论


沪ICP备19023445号-2号
友情链接