Module  javafx.base
软件包  javafx.beans.property

Class ReadOnlyDoubleProperty

    • 构造方法详细信息

      • ReadOnlyDoubleProperty

        public ReadOnlyDoubleProperty​()
        构造函数为 ReadOnlyDoubleProperty
    • 方法详细信息

      • toString

        public String toString​()
        返回此 ReadOnlyDoubleProperty对象的字符串表示形式。
        重写:
        toStringObject
        结果
        这个 ReadOnlyDoubleProperty对象的字符串表示形式。
      • readOnlyDoubleProperty

        public static <T extends NumberReadOnlyDoubleProperty readOnlyDoubleProperty​(ReadOnlyProperty<T> property)
        返回一个ReadOnlyDoubleProperty ,其中包含一个ReadOnlyProperty 如果ReadOnlyProperty已经是ReadOnlyDoubleProperty ,它将被退回。 否则,将创建一个新的ReadOnlyDoubleProperty ,绑定到ReadOnlyProperty 注意:空值将被解释为0.0
        参数类型
        T - 要包装的号码的类型
        参数
        property - 来源 ReadOnlyProperty
        结果
        一个 ReadOnlyDoubleProperty包装了 ReadOnlyProperty如果有必要
        异常
        NullPointerException - 如果 propertynull
        从以下版本开始:
        JavaFX 8.0