摘要: 修改配置文件 select 1 from dual 改成 select 1 因为 dual是oracle公司的 阅读全文
posted @ 2022-01-07 21:49 11111ghm 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 一.将long型转化为int型,这里的long型是基础类型: long a = 10; int b = (int)a; 二.将Long型转换为int 型的,这里的Long型是包装类型: Long a = 10; int b=a.intValue(); 三.将int型转化为long型,这里的int型是 阅读全文
posted @ 2022-01-07 18:08 11111ghm 阅读(147) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_44515596/article/details/119906070 阅读全文
posted @ 2022-01-07 13:02 11111ghm 阅读(157) 评论(0) 推荐(0) 编辑