當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Processing Table用法及代碼示例


Processing, 類Table用法介紹。

構造函數

  • Table()
  • Table(rows)

說明

Table 對象存儲具有多行和多列的數據,就像在傳統電子表格中一樣。可以從頭開始、動態地或使用現有文件中的數據生成表。表也可以輸出並保存到磁盤,如上例所示。



其他 Table 方法記錄在 Processing Table Javadoc 中。

例子

Table table;

void setup() {

  table = new Table();
  
  table.addColumn("id");
  table.addColumn("species");
  table.addColumn("name");
  
  TableRow newRow = table.addRow();
  newRow.setInt("id", table.lastRowIndex());
  newRow.setString("species", "Panthera leo");
  newRow.setString("name", "Lion");
  
  saveTable(table, "data/new.csv");
}

// Sketch saves the following to a file called "new.csv":
// id,species,name
// 0,Panthera leo,Lion

方法

相關用法


注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 Table。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。