摘要:
String 字符串是多个字符的集合, String:是内容不可变的字符串,底层是不可变的字符数组, final char[] final修饰的字符数字,final修饰的类不能被继承,值不能能改, stringBuilder和stringBuffer::可变,没有用final修饰,char[] va 阅读全文
摘要:
Failed to obtain JDBC Connection; nested exception is java.sql.SQLException: The server time zone value '�й���ʱ��' is unrecognized or represents more 阅读全文
摘要:
package text_0313; //题目:求100之内的素数 //除了被1和它自身外,不能被其他自然数整除的数;否则称为合数 public class wang_27 { public static void main(String[] args) { int count = 0; for ( 阅读全文