變數
該文件說明了如何更改和修改變量的值,並提供了變量操作技術的指導。
更改變量的值
設置…自
{"blocks":"<xml xmlns=\"https://developers.google.com/blockly/xml\"><variables><variable>count</variable></variables><block type=\"variables_set\" disabled=\"true\" x=\"22\" y=\"202\"><field name=\"VAR\">count</field><value name=\"VALUE\"><shadow type=\"math_number\" disabled=\"true\"><field name=\"NUM\">0</field></shadow></value></block></xml>"}
此塊用於將變數設置為與值相同。
參數:
- 屏幕物件
- 條件:數字(預設值:0)
輸出: N/A
示例代碼:
{"blocks":"<xml xmlns=\"https://developers.google.com/blockly/xml\"><variables><variable>count</variable></variables><block type=\"pxt-on-start\" x=\"0\" y=\"0\"><statement name=\"HANDLER\"><block type=\"variables_set\"><field name=\"VAR\">count</field><value name=\"VALUE\"><shadow type=\"math_number\"><field name=\"NUM\">3</field></shadow></value><next><block type=\"basic_consoleLogNum\"><value name=\"num\"><block type=\"variables_get\"><field name=\"VAR\">count</field></block></value></block></next></block></statement></block></xml>"}
輸出:
修改變量的值
改變…由
{"blocks":"<xml xmlns=\"https://developers.google.com/blockly/xml\"><variables><variable>count</variable></variables><block type=\"variables_change\" disabled=\"true\" x=\"23\" y=\"247\"><field name=\"VAR\">count</field><value name=\"VALUE\"><shadow type=\"math_number\" disabled=\"true\"><field name=\"NUM\">1</field></shadow></value></block></xml>"}
此塊用於按數字的數量更改變量。
參數:
- 屏幕物件
- 條件:數字(預設值:0)
輸出: N/A
示例代碼:
{"blocks":"<xml xmlns=\"https://developers.google.com/blockly/xml\"><variables><variable>count</variable></variables><block type=\"pxt-on-start\" x=\"0\" y=\"0\"><statement name=\"HANDLER\"><block type=\"variables_set\"><field name=\"VAR\">count</field><value name=\"VALUE\"><shadow type=\"math_number\"><field name=\"NUM\">3</field></shadow></value><next><block type=\"variables_change\"><field name=\"VAR\">count</field><value name=\"VALUE\"><shadow type=\"math_number\"><field name=\"NUM\">1</field></shadow></value><next><block type=\"basic_consoleLogNum\"><value name=\"num\"><block type=\"variables_get\"><field name=\"VAR\">count</field></block></value></block></next></block></next></block></statement></block></xml>"}
輸出:
目録