當前位置: 首頁>>代碼示例>>Java>>正文


Java Immutable類代碼示例

本文整理匯總了Java中be.kuleuven.cs.som.annotate.Immutable的典型用法代碼示例。如果您正苦於以下問題:Java Immutable類的具體用法?Java Immutable怎麽用?Java Immutable使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


Immutable類屬於be.kuleuven.cs.som.annotate包,在下文中一共展示了Immutable類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getValues

import be.kuleuven.cs.som.annotate.Immutable; //導入依賴的package包/類
@Basic @Immutable
public double[][] getValues() {
    /*double[] v = new double[getRows() * getColumns()];
    for(int i = 0; i < getRows(); i++) {
        System.arraycopy(getElements()[i], 0, v, getColumns() * i, getColumns());
    }*/
    return this.elements;
}
 
開發者ID:noisedriver,項目名稱:java-math-library,代碼行數:9,代碼來源:Matrix.java

示例2: getValue

import be.kuleuven.cs.som.annotate.Immutable; //導入依賴的package包/類
/**
 * The value of this node.
 * @return the value of this node.
 */
@Basic @Immutable
public E getValue() {
    return this.value;
}
 
開發者ID:noisedriver,項目名稱:java-data-library,代碼行數:9,代碼來源:Node.java

示例3: getParent

import be.kuleuven.cs.som.annotate.Immutable; //導入依賴的package包/類
/**
 * 
 * @return  the parent of this node.
 */
@Immutable @Basic
public DoublyLinkedListNode getParent() {
    return this.parent;
}
 
開發者ID:noisedriver,項目名稱:java-data-library,代碼行數:9,代碼來源:DoublyLinkedListNode.java

示例4: getRows

import be.kuleuven.cs.som.annotate.Immutable; //導入依賴的package包/類
@Override
@Basic @Immutable
public int getRows() {
    return rows;
}
 
開發者ID:noisedriver,項目名稱:java-math-library,代碼行數:6,代碼來源:Matrix.java

示例5: getColumns

import be.kuleuven.cs.som.annotate.Immutable; //導入依賴的package包/類
@Override
@Basic @Immutable
public int getColumns() {
    return columns;
}
 
開發者ID:noisedriver,項目名稱:java-math-library,代碼行數:6,代碼來源:Matrix.java

示例6: getElements

import be.kuleuven.cs.som.annotate.Immutable; //導入依賴的package包/類
@Override
@Basic @Immutable
public double[][] getElements() {
    return elements.clone();
}
 
開發者ID:noisedriver,項目名稱:java-math-library,代碼行數:6,代碼來源:Matrix.java

示例7: getX

import be.kuleuven.cs.som.annotate.Immutable; //導入依賴的package包/類
/**
 * @return the X coordinate of this point.
 */
@Basic @Immutable
public double getX() {
    return this.x;
}
 
開發者ID:noisedriver,項目名稱:java-math-library,代碼行數:8,代碼來源:Point3D.java

示例8: getY

import be.kuleuven.cs.som.annotate.Immutable; //導入依賴的package包/類
/**
 * @return the Y coordinate of this point.
 */
@Basic @Immutable
public double getY() {
    return this.y;
}
 
開發者ID:noisedriver,項目名稱:java-math-library,代碼行數:8,代碼來源:Point3D.java

示例9: getZ

import be.kuleuven.cs.som.annotate.Immutable; //導入依賴的package包/類
/**
 * @return the Y coordinate of this point.
 */
@Basic @Immutable
public double getZ() {
    return this.z;
}
 
開發者ID:noisedriver,項目名稱:java-math-library,代碼行數:8,代碼來源:Point3D.java


注:本文中的be.kuleuven.cs.som.annotate.Immutable類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。