2021-07-02 项目基本流程:Android客户端<->接口<->数据库,公司中各部分有专门的人来负责 Android开发工具:Android Studio 1.下载安装jdk 2.... project本来是Android,单击以切换为project 重要文件 线性布局LinearLayou ...
分类:
移动开发 时间:
2021-07-05 17:45:56
阅读次数:
0
1、启动服务 systemctl restart mysqld.service 报错: 启动数据库Can‘t connect to MYSQL server through socket ''var/lib/mysql/mysql.cock(146 lock timed out:Retry tran ...
分类:
数据库 时间:
2021-07-05 17:35:04
阅读次数:
0
贪吃蛇游戏 贪食蛇(也叫贪吃蛇)是一款经典的小游戏。初始是像素版本,后来又衍生出3D版本、多人对战版本等。 这里使用C语言来实现DOS下的贪吃蛇小游戏。 开发工具:Visual Studio 2019 开发语言:C语言 游戏开始后,会在中间位置出现一条只有一个个节点的贪吃蛇,并随机出现一个食物。 贪 ...
分类:
编程语言 时间:
2021-07-05 17:27:24
阅读次数:
0
功能: 一.列相关: 1.追加列,左插列,右插列, 2.删除列 二.行相关: 1.追加行,上插行,下插行 2.删除行,删除所有空行,清空所有数据... 原理:根据对鼠标于 DataGridView 点击区域的判断来 对 点击列 或 点击行 的准确定位,再执行操作... 优点: 1.只需要 CellM ...
An n-bit gray code sequence is a sequence of 2n integers where: Every integer is in the inclusive range [0, 2n - 1], The first integer is 0, An intege ...
分类:
其他好文 时间:
2021-07-05 17:13:05
阅读次数:
0
import axios from 'axios'; import iView from 'iview'; const baseApiObj = { production: 'https://imzt.bndxqc.com/api', experience: 'https://imztty.bndx ...
分类:
Web程序 时间:
2021-07-05 16:58:57
阅读次数:
0
[root@NMS src]# yum search mariadb Last metadata expiration check: 0:46:24 ago on Fri 02 Jul 2021 08:18:32 PM CST. Name Exactly Matched: mariadb maria ...
分类:
数据库 时间:
2021-07-05 16:58:36
阅读次数:
0
1.必须使用keep-alive才有效果(App.vue中添加)。 <keep-alive> <router-view></router-view> </keep-alive> 2.activated活跃状态下。 3.deactivated不活跃状态下。 ...
分类:
其他好文 时间:
2021-07-05 16:57:44
阅读次数:
0
7.1 索引的分类 在一个表中,主键索引只能有一个,唯一索引可以有多个。 主键索引(PRIMARY KEY) 唯一的标识,主键不可重复,只能有一个列作为主键 唯一索引(UNIQUE KEY) 避免重读的列出现,唯一索引可以重复,多个列都可以标识为唯一索引 常规索引(KEY/INDEX) 默认的,in ...
分类:
数据库 时间:
2021-07-05 16:42:08
阅读次数:
0
<script> var arr = [ { age:11, name:'aa' }, { age:22, name:'bb' }, { age:33, name:'cc' } ] // map 使用 var age = arr.map((item,index)=>{ console.log(ite ...
分类:
其他好文 时间:
2021-07-05 16:37:14
阅读次数:
0