可以用deGetAllViewTypes()来获取。 "graphic" "layout" "maskLayout" "schematic" "schematicSymbol" "netlist" "verilogMap" "netlist.v" "vsdpSparamModel" "vsdpSpi ...
分类:
其他好文 时间:
2020-06-21 09:53:25
阅读次数:
163
1.浅拷贝 var obj1 = { name: "lsd", age: 25, skill: ["Java", "H5", "PHP"], wife: { name: "wyq", age: 24 } } var obj2 = {}; // 浅拷贝只拷贝第一层属性,引用类型数据地址是相同的 因此存 ...
分类:
编程语言 时间:
2020-06-15 13:48:18
阅读次数:
52
https://www.cnblogs.com/yeungchie/ code procedure(ycartGo(length1) prog((foundits) for(x 1 length1 printf("\nTotal length : %d(%d)\n" x + 3 x) _ycart( ...
分类:
其他好文 时间:
2020-06-03 23:15:15
阅读次数:
71
netstat -ano 查看端口情况 tasklist|findstr “9220” 通过PID号“9220”查看对应端口被什么进程占用了 netstat -aon|findstr "8080" 查看端口8080对应的PID tskill 1844 结束PID为1844的进程 ...
code unless(fboundp('ycFlattenList) procedure(ycFlattenList(listin) prog((output) foreach(arg listin if(listp(arg) output = append(output ycFlattenLis ...
分类:
其他好文 时间:
2020-05-31 20:06:48
阅读次数:
90
1,开启大箱子补丁。 2,你在游戏根目录下搜索PlugY.ini文件。 [SKILLS POINTS]ActiveSkillsUnassignment=0ActiveSkillsUnassignmentOneForOne=0 0改成1,改完后进入游戏,点击技能界面右上方的×,就可以洗点洗技能了。 3 ...
分类:
其他好文 时间:
2020-05-27 01:25:58
阅读次数:
637
github地址:https://github.com/liuyi1804/gitskills.git 1、copy本地文件到git文件夹,创建并切换dev,打标签git tag V0.1。2、执行git add auto_unittest/ git commit -m 'V0.1'3、切回mast ...
分类:
其他好文 时间:
2020-05-18 17:03:52
阅读次数:
144
魔法方法有参数的__init__() class Hero(object): """定义了一个英雄类,可以移动和攻击""" def __init__(self, name, skill, hp, atk, armor): """ __init__() 方法,用来做变量初始化 或 赋值 操作""" # ...
分类:
其他好文 时间:
2020-05-11 09:17:15
阅读次数:
65
魔法方法__str__() class Hero(object): """定义了一个英雄类,可以移动和攻击""" def __init__(self, name, skill, hp, atk, armor): """ __init__() 方法,用来做变量初始化 或 赋值 操作""" # 英雄名 ...
分类:
其他好文 时间:
2020-05-11 09:15:53
阅读次数:
69
+ code + describe RT,返回倒数第二个数据,省事。 + extend 返回第一个: 返回第二个: 返回倒数第一个: + example ...
分类:
其他好文 时间:
2020-05-10 01:46:06
阅读次数:
99