(1)点击Extensions按钮,如下图红色方框处(快捷键Ctrl+Shift+X) (2)在搜索框中搜索Chinese,找到Chinese(Simplified)Language Pack for Visua,点击绿色的Install按钮,即可安装,重启后生效 ...
分类:
编程语言 时间:
2020-07-15 15:07:22
阅读次数:
172
在实际生产环境中有时会出现误删数据的情况,Binlog日志,即二进制日志文件,用于记录用户对数据库操作的SQL语句信息,当发生数据误删除的时候我们可以通过binlog日志来还原已经删除的数据,还原数据的方法分为传统二进制文件还原数据。
分类:
数据库 时间:
2020-07-15 13:10:59
阅读次数:
80
一般在src/utils里新建date.js import Vue from 'vue'; // 时间戳转换为 YYYY-MM-DD HH:mm:ss Vue.filter('formatDate', function(timeStamp, format) { if (timeStamp) { fo ...
分类:
其他好文 时间:
2020-07-14 21:52:52
阅读次数:
216
VS2019下载地址 社区版 https://visualstudio.microsoft.com/zh-hans/thank-you-downloading-visual-studio/?sku=Community&rel=16 专业版 https://visualstudio.microsoft ...
分类:
其他好文 时间:
2020-07-14 16:26:32
阅读次数:
167
os.date ([format [, time]]) Returns a string or a table containing date and time, formatted according to the given string format. If the time argument ...
分类:
其他好文 时间:
2020-07-14 12:59:15
阅读次数:
223
1、visual studio code安装 软件下载地址:https://code.visualstudio.com/ (1)点击上面的软件下载地址,进入visual studio code 官方网站,点击下面图片的红色方框圈中的按钮进行下载 (2)下载后点击下载好的.exe安装包(如下图所示) ...
分类:
其他好文 时间:
2020-07-14 11:45:36
阅读次数:
285
开发工具: Visual Studio2019 SQL Server2008 MySQL Visual Studio Code git VisualSVN 系统清理杀毒 NOD32 iobit uninstaller ...
分类:
其他好文 时间:
2020-07-14 11:44:36
阅读次数:
74
thread 用于声明一个线程本地变量. __declspec(thread)的前缀是Microsoft添加给Visual C++编译器的一个修改符。它告诉编译器,对应的变量应该放入可执行文件或DLL文件中它的自己的节中。__declspec(thread)后面的变量 必须声明为函数中(或函数外)的 ...
分类:
其他好文 时间:
2020-07-14 10:34:41
阅读次数:
68
动作 printf printf 可以实现格式化输出格式: printf “FORMAT”, item1, item2, ... 说明: 必须指定FORMAT 不会自动换行,需要显式给出换行控制符 \n FORMAT中需要分别为后面每个item指定格式符 格式符:与item一一对应 %c:显示字符的 ...
分类:
其他好文 时间:
2020-07-14 09:20:53
阅读次数:
73
[C 语言中文开发手册sscanf (File input/output) - C 中文开发手册Defined in header(1)?int scanf( const char *format, ... );?(until C99)?int scanf( const char *restrict... ...
分类:
其他好文 时间:
2020-07-13 21:57:28
阅读次数:
73