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


Processing TableRow.getColumnCount()用法及代碼示例


Processing, 類TableRow中的getColumnCount()用法介紹。

用法

  • .getColumnCount()

返回

  • int

說明

返回 TableRow 中的列數。

例子

Table table;

void setup() {

  table = new Table();
  
  table.addColumn("number", Table.INT);
  table.addColumn("mass", Table.FLOAT);
  table.addColumn("name", Table.STRING);
  
  TableRow row = table.addRow();
  
  println(row.getColumnCount());  // Prints "3"
}

相關用法


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