Rust 1.7.0 中的宏使用范围包含三种情况: 第一种情况是宏定义在当前文件里。这个文件可能是 crate 默认的 module,也可能是随意的 module 模块。 另外一种情况是宏定义在当前 crate 。可是不是在当前文件里,而是其它 module 模块中。 第三种情况是宏定义在其它的 c ...
分类:
系统相关 时间:
2017-07-11 23:06:30
阅读次数:
375
crate:创建文件 open:打开文件 read:读取文件 write:写文件 lseek :设置文件偏移量 access:推断文件 close:关闭文件的读写操作 $(function () { $('pre.prettyprint code').each(function () { var l ...
分类:
系统相关 时间:
2017-07-01 17:19:42
阅读次数:
267
进入Crate安装目录,执行命令: ./bin/crash \connect 192.168.2.6:4200 select * from ping where probe_name = 'xjlu'; ...
分类:
其他好文 时间:
2017-05-06 23:03:55
阅读次数:
168
/*crate a new array to put the elements sorted*/void MergeSort(int a[], int n){ int *TmpArray; TmpArray = (int*)malloc(n*sizeof(int)); if (TmpArray != ...
分类:
编程语言 时间:
2016-12-18 01:12:39
阅读次数:
219
Description It has recently been discovered how to run open-source software on the Y-Crate gaming device. A number of enterprising designers have deve ...
分类:
其他好文 时间:
2016-09-19 19:39:58
阅读次数:
219
一、标识符identifier 是标识符,在Rust语法中简写为 ident 。
ident 是由任意个非空的unicode字符组成。举例:在 attribute 语法中,有meta_item : ident [ '=' literal | '(' meta_seq ')' ] ? ;
实际使用如下:#![crate_type = "lib"]
#![allow(dead_code)]
#![f...
分类:
其他好文 时间:
2016-04-19 12:17:27
阅读次数:
261
Rust 的 Attribute 注释到目前为止(当前版本 rustc 1.7.0 (a5d1e7a59 2016-02-29)一共包括十三个种类。一、只用于 crate 的 attribute
crate_name - specify the crate’s crate name.
crate_type - see linkage.
feature - see compiler features....
分类:
其他好文 时间:
2016-03-20 13:14:56
阅读次数:
271
看看servo源码。看看能不能通过看来学会语言。 https://github.com/servo/servo 先看看,components\servo\main.rs。 第一行,extern crate compositing; 猜测类似于c语言引入外部库。的确如此: 可以试验如下: ...
分类:
其他好文 时间:
2015-09-20 20:54:15
阅读次数:
147
Description It has recently been discovered how to run open-source software on the Y-Crate gaming device. A number of enterprising designers have deve...
分类:
其他好文 时间:
2015-07-28 10:27:33
阅读次数:
172
1 级联删除
Oracle在外键的删除上有NO ACTION(类似RESTRICT)、CASCADE和SET NULL三种行为。
下面以学生-班级为例说明不同情况下的外键删除,学生属于班级,班级的主键是学生的外键。
-- 班级表
CRATE TABLE TB_CLASS
(
ID NUMBER NOT NULL, --班级主键
NAME VARCHAR2(50),...
分类:
数据库 时间:
2015-07-11 20:12:33
阅读次数:
249