数据类型 强类型语言 要求变量的使用要严格符合规定,所有变量必须先定义后使用。 弱类型语言 Java的数据类型分为两大类 基本类型 基本数据类型分为数值类型和boolean类型 而数值类型分为整数类型,浮点类型和字符类型 整数类型: byte占1个字节范围:-128~127 short占2个字节范围 ...
分类:
编程语言 时间:
2021-02-25 12:02:18
阅读次数:
0
重新安装了adb和夜神模拟器后,启动夜神模拟器,并在控制台执行adb devices时总是提示错误: List of devices attachedadb server version (41) doesn't match this client (36); killing...* daemon ...
分类:
数据库 时间:
2021-02-24 13:25:00
阅读次数:
0
using System; namespace leecode1 { class Program { static void Main(string[] args) { string outString= string.Empty; string s1 = "abc"; string s2 = "p ...
分类:
其他好文 时间:
2021-02-24 12:48:10
阅读次数:
0
使用CacheManager 1 Cache 作用 Cache 缓存: 计算机内存中一段数据 作用: 用来减轻DB的访问压力,从而提高系统的查询效率 流程: 2 .使用shiro中默认EhCache实现缓存 (1).引入依赖 <!--引入shiro和ehcache--> <dependency> < ...
分类:
编程语言 时间:
2021-02-23 14:27:13
阅读次数:
0
在我们的日常开发过程中,我们会遇到需要将数据库中的是数据导出到本地的txt文件中,或者将本地TXT文件中的数据导入到数据库。 为了方便开发人员的工作,SQL Server为我们提供了BCP 工具帮助我们导入,导出数据。 如果想使用BCP,需要现在本地安装SQLCMD X64: https://go. ...
分类:
数据库 时间:
2021-02-23 14:21:27
阅读次数:
0
Java方法containsAll学习 有时候我们需要判断B链表是不是A链表的子集,我们可以使用A.containsAll(B)来判断,当返回值是true的时候就表明B链表是A链表的子集,当返回值是false时候就表明B链表不是A链表的子集。 实验代码如下: package learnIng; im ...
分类:
编程语言 时间:
2021-02-23 14:17:19
阅读次数:
0
pyspark有个bug, 虽然下面代码写了 write.mode("overwrite")但是不生效 spark.conf.set("hive.exec.dynamic.partition.mode", "constrict") db_df.repartition(1).write.mode("o ...
分类:
其他好文 时间:
2021-02-23 14:14:20
阅读次数:
0
# -*- coding: UTF-8 -*- import pymongo # 连接数据库 client = pymongo.MongoClient('localhost',27017) db=client['qunar'] collection=db['departures'] # 读取数据 d ...
分类:
数据库 时间:
2021-02-23 14:03:33
阅读次数:
0
1.创建超级管理员账户,超级管理员必须在admin下创建,这个超级管理员账户可以访问所有的数据库 use admin db.createUser({ user:'admin', pwd: '123456', roles:[{role:'root', db: 'admin'}] }) 2.修改Mong ...
分类:
数据库 时间:
2021-02-23 14:02:37
阅读次数:
0
sharding: jdbc: config: sharding: tables: myorder: key-generator-column-name: id #主键 actual-data-nodes: db$->{0..1}.myorder_$->{0..1} #分库策略 database‐s ...
分类:
数据库 时间:
2021-02-22 12:45:00
阅读次数:
0