伪指令不是真正的指令,而是为了方便NASM汇编器而存在,但是它们的地位与真正的指令相同: label: instruction operands ; comment instruction部分就可以是伪指令 Dx和RESx Dx声明初始化的数据: db 0x55 ; just the byte 0x ...
分类:
其他好文 时间:
2021-04-07 10:53:23
阅读次数:
0
function func1(a, b, c) { console.log(arguments); console.log(arguments[0]); // expected output: 1 console.log(arguments[1]); // expected output: 2 co ...
分类:
其他好文 时间:
2021-04-06 15:01:27
阅读次数:
0
var map = new BMapGL.Map('map',{ minZoom:8, maxZoom:12, // 设置显示类型 MapType: BMAP_NORMAL_MAP }); // 设置中心点 var point = new BMapGL.Point(116.404,39.915); ...
分类:
其他好文 时间:
2021-04-06 14:48:41
阅读次数:
0
一 动画效果 1. show(3000); 3秒这后出来2. hide(3000);3秒后隐藏3. toggle(3000); 反着来,如果之前是隐藏,现在就是出现4. slideDown(3000); 宽度不变,高度变化 卷拉门5. slideUp(3000); 6. $('.c1').fadeI ...
分类:
Web程序 时间:
2021-04-06 14:21:28
阅读次数:
0
执行yum命令失败 系统: centos7.8 可以通过以下命令解决 #cd /var/lib/rpm# lsBasenames __db.001 __db.003 Group Name Packages Requirename Sigmd5Conflictname __db.002 Dirname ...
分类:
数据库 时间:
2021-04-05 11:46:34
阅读次数:
0
C#语法基础01_读取输入 Read() ReadLine() Write() WriteLine() ReadKey() 读取单个字符Read() Console.Read(); // 读取一个字符,返回其ASKII的int值 例子 Console.WriteLine(Console.Read() ...
【Dataguard】DataGuard运维注意事项 原创 Oracle 作者:xysoul_云龙 时间:2021-03-30 14:12:32 398 0 DataGuard 主要目的 或者作用 1、主备唯一名不能相同 1 2 3 db_name,db_unique_name,instance_n ...
分类:
其他好文 时间:
2021-04-02 13:36:40
阅读次数:
0
工具软件:Sigrity 2019/PowerSI 1. 新建一个"Model Extraction"工作流程 2. 加载S参数 3. 增加S21插入损耗曲线(先介绍单端,再差分) 4. 观察S21 5. 将纵坐标单位改为dB 6. Mark标记 以下是差分的查看方式,只是要设置差分,所以只指出差分 ...
分类:
其他好文 时间:
2021-04-02 13:29:42
阅读次数:
0
用python写数据库连接时要用到数据连接池于是就想到了DBUtils ,这个简单pip install DBUtile 安装完后写代码测试一下 from DBUtils.PooledDB import PooledDB Traceback (most recent call last): File ...
分类:
数据库 时间:
2021-04-02 13:02:54
阅读次数:
0
sql server环境测试: 几个特性: 1.sql server兼容性可以说是最差的。 举例: select x from y where id=1 字符串查询 select x from y where id='1' 这是会报错的,不允许的 select x from y where id=" ...
分类:
数据库 时间:
2021-04-01 13:09:51
阅读次数:
0