04 2020 档案

摘要:1.使用ane请在库连接选项内添加 ArduinoConnector.ane文件; 2.实例运行会遇到 ArgumentError: Error #3500: The extension context does not have a method with the name setupPort. 阅读全文
posted @ 2020-04-06 14:13 xxdmx712 阅读(614) 评论(0) 推荐(0)
摘要:++自增 --自减 主要区别++a与a++ int a = 4; int b; b = ++a; //(先将a自增为5,再赋值给b,a为5,b为5); b = a++; //(先将a赋值给b,再自增为5,a为5,b为4); 阅读全文
posted @ 2020-04-05 22:50 xxdmx712 阅读(155) 评论(0) 推荐(0)