Processing, 類XML
中的getInt()
用法介紹。
用法
.getInt(name)
.getInt(name, defaultValue)
參數
name
(String)
屬性的非空全名defaultValue
(int)
屬性的默認值
返回
int
說明
以 int
形式返回元素的屬性值。如果指定了defaultValue
參數並且該屬性不存在,則返回defaultValue
。如果未指定 defaultValue
且屬性不存在,則返回值 0。
例子
// The following short XML file called "mammals.xml" is parsed
// in the code below. It must be in the project's "data" folder.
//
// <?xml version="1.0"?>
// <mammals>
// <animal id="0" species="Capra hircus">Goat</animal>
// <animal id="1" species="Panthera pardus">Leopard</animal>
// <animal id="2" species="Equus zebra">Zebra</animal>
// </mammals>
XML xml;
void setup() {
xml = loadXML("mammals.xml");
XML firstChild = xml.getChild("animal");
println(firstChild.getInt("id"));
}
// Sketch prints:
// 0
相關用法
- Processing XML.getString()用法及代碼示例
- Processing XML.getName()用法及代碼示例
- Processing XML.getChild()用法及代碼示例
- Processing XML.getParent()用法及代碼示例
- Processing XML.getFloat()用法及代碼示例
- Processing XML.getChildren()用法及代碼示例
- Processing XML.getAttributeCount()用法及代碼示例
- Processing XML.getFloatContent()用法及代碼示例
- Processing XML.getContent()用法及代碼示例
- Processing XML.addChild()用法及代碼示例
- Processing XML.setString()用法及代碼示例
- Processing XML.listChildren()用法及代碼示例
- Processing XML.toString()用法及代碼示例
- Processing XML.setFloat()用法及代碼示例
- Processing XML.removeChild()用法及代碼示例
- Processing XML.setContent()用法及代碼示例
- Processing XML.setInt()用法及代碼示例
- Processing XML.format()用法及代碼示例
- Processing XML.listAttributes()用法及代碼示例
- Processing XML.hasChildren()用法及代碼示例
- Processing XML.hasAttribute()用法及代碼示例
- Processing XML.setName()用法及代碼示例
- Processing XML用法及代碼示例
- Processing FFT用法及代碼示例
- Processing SawOsc.pan()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 XML.getInt()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。