当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。