javase学习-精度损失 1.数据类型转换 long x = 10L; 10L是long类型字面值,x是long类型变量,不存在类型转换,直接赋值。 long x = 10L; // long类型,8个字节 int y = x // int类型,4个字节 编译报错 大容量数据类型不能直接赋值给小容 ...
分类:
编程语言 时间:
2021-04-15 12:41:57
阅读次数:
0
Map<String,BaseResultMessage> brmMap = new HashMap<>(); long beginTimeSum = System.currentTimeMillis(); for(StkInventoryWlTypeEnum emum:StkInventoryWl ...
分类:
编程语言 时间:
2021-04-13 12:56:07
阅读次数:
0
监控MySQL Server运行时资源消耗、资源等待,information_schema关注Server运行的元数据信息,performance_schema通过事件来实现监控,事件可以是函数调用、操作系统等待、或者sql语句的解析排序等阶段 其他特点: performance_schema不会随 ...
分类:
其他好文 时间:
2021-04-13 11:59:30
阅读次数:
0
关于整型提升,因为int存4个字节,只要类型的字节数小于4,就会存在整形提升,如:char ,short等类型,而针对大于4的,怎么处理呢,大转小,然后再计算:如:double float,long int . 如:float f=3.13; int num=f;(但是,转化要合理,这种情况会精度丢 ...
分类:
其他好文 时间:
2021-04-13 11:49:06
阅读次数:
0
本场链接:Codeforces Round #713 (Div. 3) A. Spy Detected! #include <bits/stdc++.h> using namespace std; typedef long long ll; #define forn(i,x,n) for(int i ...
分类:
其他好文 时间:
2021-04-12 12:42:16
阅读次数:
0
进入查看:2021-2022学年英语周报八年级第25期答案及试题 It is never too old to learn.活到老,学到老。It is no use crying over spilt milk.覆水难收。It is the first step that costs trouble ...
分类:
其他好文 时间:
2021-04-10 13:19:01
阅读次数:
0
1.线程池源码分析: public ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, Thre ...
分类:
编程语言 时间:
2021-04-10 12:53:54
阅读次数:
0
long long myPow(long long x, int n) { long long ans = 1; while(n){ if(n % 2 != 0){ ans *= x; ans %= modN; } x *= x; x %= modN; n /= 2; } return ans; } ...
分类:
其他好文 时间:
2021-04-08 13:55:01
阅读次数:
0
最近接触了vue项目,这里记录一下vue跳转到下一页面携带参数的两种方式。 项目地址:http://github.crmeb.net/u/long 典型应用场景:列表页跳转到详情页 一、配置路由 文件路径:src/router/config.php import Vue from 'vue' imp ...
分类:
其他好文 时间:
2021-04-08 13:33:42
阅读次数:
0
How To : Upgrade 11.2.0.2.0 to 12.1.0.1.0 Posted on August 22, 2015 by baironnie it’s a little bit long time since my last post. though i have some no ...
分类:
其他好文 时间:
2021-04-08 13:10:06
阅读次数:
0