安装pub global activate angular_cli安装完成后需要把pub-cache/bin添加到环境变量中:【windows】添加 C:\Users\Administrator\AppData\Roaming\Pub\Cache\bin 到Path中使用使用ngdart help查... ...
分类:
其他好文 时间:
2020-03-02 10:57:11
阅读次数:
70
python读取文件指定行内容 import linecache text=linecache.getline(r'C:\Users\Administrator\Desktop\SourceCodeofMongoRedis\chapter_5\generate_string.py',10) 第十行内 ...
分类:
编程语言 时间:
2020-03-02 01:14:46
阅读次数:
98
1、题目 Given a non-negative integer numRows, generate the first numRows of Pascal's triangle. In Pascal's triangle, each number is the sum of the two nu ...
分类:
其他好文 时间:
2020-03-01 23:19:06
阅读次数:
67
1、函数声明、定义、使用 函数声明:制定函数的参数和返回值类型 函数实现:函数具体的实现,参数可少于等于函数的定义。函数实现参数TS会根据函数的声明进行推断 函数调用:函数的调用参数必须要和函数的声明一致,不然会报错 2、索引签名 TS支持字符串和数字索引,可以同时使用两种类型的索引,但是数字索引的 ...
分类:
其他好文 时间:
2020-02-28 14:17:19
阅读次数:
113
1 """ 2 Given a non-negative integer numRows, generate the first numRows of Pascal's triangle. 3 In Pascal's triangle, each number is the sum of the t ...
分类:
其他好文 时间:
2020-02-28 01:38:29
阅读次数:
74
7254是一个不寻常的数,因为它可以表示为7254 = 39 x 186,这个式子中1~9每个数字正好出现一次
输出所有这样的不同的式子(乘数交换被认为是相同的式子) ...
分类:
其他好文 时间:
2020-02-27 18:49:30
阅读次数:
74
Volatile关键字的作用? 让其他线程能够马上感知到某一线程对某个变量的修改。 1)保证可见性,对共享变量的修改,其他线程马上能感知到,但不能保证原子性。 2)保证有序性,在JVM的编译阶段和指令优化排序阶段,对于volatile修饰的变量,其代码顺序不会改变。 Volatile和Synchro ...
分类:
其他好文 时间:
2020-02-27 00:50:12
阅读次数:
60
连续张量理解和contiguous()方法使用,view和reshape的区别 待办内存共享:下边的x内存布局是从0开始的,y内存布局,不是从0开始的张量 For example: when you call transpose(), PyTorch doesn't generate new ten... ...
分类:
其他好文 时间:
2020-02-26 19:12:02
阅读次数:
399
python使用MySQL主要有两个模块,pymysql(MySQLdb)和SQLAchemy。 pymysql(MySQLdb)为原生模块,直接执行sql语句,其中pymysql模块支持python 2和python3,MySQLdb只支持python2,两者使用起来几乎一样。 SQLAchemy ...
分类:
数据库 时间:
2020-02-25 12:38:05
阅读次数:
92
前言 用过angular-cli,create-react-app这些脚手架的朋友们,不知道你们有没有好奇过,为什么安装这些脚手架后,可以使用类似ng generate之类的命令。小弟研究了以下,原来是这样的。 package.json 贴一个简单的package.json { "name": "a ...
分类:
Web程序 时间:
2020-02-24 16:50:44
阅读次数:
254