摘要:
scala数据结构,可大致分为数组(Aarray)元组(Tuple)列表(List)映射(Map)集合(Set) scala同时支持可变集合和不可变集合,不可变集合可以安全的并发访问 scala优先采用不可变集合,当你采用可变集合的时候,需要导入scala.collection.mutable 1. 阅读全文
摘要:
例如你在mysql下创建的数据库名称是test cmd下 use test ; grant all privileges on *.* to root@'%' identified by "密码";(授予权限) flush privileges;(刷新) 阅读全文