
JavaSE
文章平均质量分 61
基础
w͏l͏j͏
心存敬畏,言有所戒,行有所止
展开
-
Java后端常见问题合集
Java一些面试问题总结原创 2022-06-07 18:56:53 · 1274 阅读 · 1 评论 -
java 面向对象
Can we overload the main method? A Java Constructor returns a value but, what? Can we create a program without main method? What are the six ways to use this keyword? Why is multiple inheritance not supported in Java? Why use ag..原创 2021-01-29 15:46:34 · 122 阅读 · 0 评论 -
Java初学常见问题
Java基础学习常见问题及解决方案 常见问题1:double和float浮点数比较相等问题 package cn.javaBasic; public class TestJavaDataType { public static void main(String[] args) { double num1 = 0.1; float num2 = (float) (1.0/10); System.out.println(num1);//0.1原创 2021-01-25 16:41:53 · 121 阅读 · 0 评论