大约有 530 项符合查询结果(耗时:0.0075秒) [XML]

https://www.fun123.cn/referenc... 

图表组件 · App Inventor 2 中文网

...ON 格式检索 Web客户端 内容,并且存在带有“Time”标签的数组,则可以指定“Time”列值以使用该数组。 Web客户端Y列 从 Web客户端 组件源导入数据时使用的值。该值表示来自 Web客户端 的用于数据系列 y 条目的列。 例如,如...
https://www.fun123.cn/referenc... 

创建自定义 TinyWebDB 服务 · App Inventor 2 中文网

...t stores data on a test service provided by App Inventor, http://tinywebdb.appinventor.mit.edu/ . This service is helpful for testing, but it is shared by all App Inventor users, and it has a limit of 1000 entries. If you use it, your data will be overwritten eventually. For most apps you write, yo...
https://www.tsingfun.com/it/os_kernel/599.html 

逆向工程——二进制炸弹(CSAPP Project) - 操作系统(内核) - 清泛网 - 专注...

...但花的时间却并非是线性增长的。 知识点:循环语句,数组 在1中可以看到%eax由于是调用者维护的寄存器,所以调用函数read_six_numbers时需要先入栈。0x8(%ebp)保存的应该是六个数字的地址。看了下read_six_numbers函数,基本上就...
https://bbs.tsingfun.com/thread-1957-1-1.html 

AsciiConversion 拓展问题:字母开头的会出现“C2”非预期字符 - App Inven...

...通过hexaStringMode设置为二进制模式,此时需要传入二进制数组,而原生并没有这个数据结构,使用拓展可以实现:UrsAI2ByteArray 字节数组扩展:读写二进制数据 - App Inventor 2 拓展 2、字符串模式下,使用Ascii拓展将二进制列表转...
https://www.fun123.cn/referenc... 

将Genymotion模拟器与App Inventor一起使用 · App Inventor 2 中文网

...irections, make sure that aiStarter is running, and visit the page http://appinventor.mit.edu/test.html . You should see[b]: If the aiStarter console is visible, there should see some activity as well: Leave the AVD and aiStarter running. Download the MIT AI2 Companion App [c]http://a...
https://www.tsingfun.com/it/cpp/2197.html 

使用 C++ 处理 JSON 数据交换格式 - C/C++ - 清泛网 - 专注C/C++及内核技术

...ring"); // 新建一个 Key(名为:key_array),类型为数组,对第一个元素赋值为字符串:"array_string"。 root["key_array"].append(1234); // 为数组 key_array 赋值,对第二个元素赋值为:1234。 Json::ValueType type = root.t...
https://www.tsingfun.com/it/cpp/709.html 

BSS段、数据段、代码段、堆与栈 剖析 - C/C++ - 清泛网 - 专注C/C++及内核技术

...----------- - 通过汇编文件可以看到,数组inbss 和indata 位于不同的段(inbss 位于bss 段,而indata 位于data 段) 若把test.cpp 中的indata 数组拿掉,查看生成的exe 文件的大小,可以发现,indata 拿掉之后exe 文件的大...
https://www.tsingfun.com/it/cp... 

内存调试技巧:C 语言最大难点揭秘 - C/C++ - 清泛网 - 专注C/C++及内核技术

...大量增加 free() 释放的内存和未初始化的引用 悬空指针 数组边界违规 这是所有类型。即使迁移到 C++ 面向对象的语言,这些类型也不会有明显变化;无论数据是简单类型还是 C 语言的 struct 或 C++ 的类,C 和 C++ 中内存管理和...
https://www.tsingfun.com/it/tech/1879.html 

Lua简明教程 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...ey Value的数据结构,它很像Javascript中的Object,或是PHP中的数组,在别的语言里叫Dict或Map,Table长成这个样子: 1 haoel = {name="ChenHao", age=37, handsome=True} 下面是table的CRUD操作: 1 2 3 4...
https://bbs.tsingfun.com/thread-464-1-1.html 

Lua简明教程 - 脚本技术 - 清泛IT论坛,有思想、有深度

...ey Value的数据结构,它很像Javascript中的Object,或是PHP中的数组,在别的语言里叫Dict或Map,Table长成这个样子:haoel = {name="ChenHao", age=37, handsome=True}复制代码 下面是table的CRUD操作:haoel.website="http://coolshell.cn/" local age...