总体说明 新买来的硬盘,通过USB口插在电脑上时显示不出来。(如下图) 这种情况可能是硬盘尚未初始化造成的。 Microsoft网站上有一个详细的新硬盘初始化方法可供参考:https://docs.microsoft.com/zh-cn/windows-server/storage/disk-man ...
分类:
其他好文 时间:
2021-07-02 15:23:10
阅读次数:
0
列表属性 ol,ul{ /*list-style: disc;*/ /*实心圆点*/ /*list-style: square;*/ /*实心小方块*/ /*list-style: circle;*/ /*空心圆点*/ /*list-style: decimal;*/ /*1/2/3数字排序*/ / ...
分类:
Web程序 时间:
2021-07-01 17:29:11
阅读次数:
0
created on 21/03/04 this是什么 任何函数本质上都是通过某个对象来调用的,未直接指定就是window 所有函数内部都有一个this this的值是调用函数的当前对象 如何确定this的值 test():window p.test():p new test():新创建的对象 p. ...
分类:
其他好文 时间:
2021-07-01 17:25:30
阅读次数:
0
product 表 product_name、spu、create_datetime 想要查找商品名称中包涵短袖的商品一共有多少个 select count(*) from product where product_name like "%短袖%" shop 表 中有shop_name、chann ...
分类:
数据库 时间:
2021-07-01 17:22:17
阅读次数:
0
什么时候使用const? 当我们修饰的标识符不希望被别人更改的话(再次赋值),那么我们就可以使用const来修饰属性保证数据的安全性,但是建议: ES6 开发时。优先用const,要改变的变量用let即可。 C/C++ 是用来定义常量的. 使用特点: 1. 当定义的时候 记得一定要去赋值,而且只能赋 ...
分类:
其他好文 时间:
2021-07-01 16:55:15
阅读次数:
0
changeData (data) { const arr = [] if (data.length !== 0) { data.forEach(item => { const obj = {} obj.id = item.path obj.label = item.name if (item.ch ...
分类:
其他好文 时间:
2021-07-01 16:42:14
阅读次数:
0
由于继承自UBlueprintFunctionLibrary的子类中声明的函数基本上是static, 在类内部调用外部定义的委托编译时会报错,按如下方式进行操作则可正常使用。 *.h 1 UCLASS() 2 class UE4_OSS_LIBRARY_API UOSSApiUtilty : pub ...
分类:
其他好文 时间:
2021-07-01 16:24:26
阅读次数:
0
指针函数 #include <stdio.h> #define uint8 unsigned char #define uint16 unsigned short #define uint32 unsigned int uint8 get_device_type_flash() { printf(" ...
分类:
编程语言 时间:
2021-06-30 18:21:24
阅读次数:
0
通常sort和uniq一起使用,sort在前,uniq在后。 uniq -c是把个数统计在一行的最前面;uniq -u是去重但不打印重复个数。 但uniq的去重是相邻且相同的缩为一个 # cat data1 1 2 2 2 2 3 3 1 1 1 # cat data1 |uniq -c 1 1 4 ...
分类:
其他好文 时间:
2021-06-30 18:17:48
阅读次数:
0
摘自微信公众号:学习曾国藩1、要计较增量而不是存量勤俭节约是中华民族的传统美德,从小在我们心里节约的概念就根深蒂固。但是刻意地去节省就会变成富有的人吗?事实上并非如此,真正富有的人是通过不断的赚钱才让自己的财富不断增加。赚更多的钱比省钱重要万倍,这就是要计较增量而不是存量的道理。 2、要计较拓展而不 ...
分类:
其他好文 时间:
2021-06-30 18:08:16
阅读次数:
0