上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 25 下一页
摘要: 古之成大事者,不唯有超世之才,坚韧不拔之志,毅必具有坚毅之品格。 腹有坚毅,方能挑战命运。人不应该向命运低头,走出去,不枉活一世。平凡孕育着坚毅,吾辈青年,当挑战命运,砥砺前行,方能赓续我中国精神。 腹有坚毅,方能激发潜力。使我痛苦者必使我坚毅,吾辈青年当激发潜力,勇往直前,方能续写我中华伟业。 腹 阅读全文
posted @ 2022-07-21 13:59 九五小庞 阅读(174) 评论(0) 推荐(0)
摘要: test字段为ntext类型SQL语句:select * from A where test=’xxx’执行之后会出现:数据类型 ntext 和 varchar 在 equal to 运算符中不兼容的错误信息。是不是值也是ntext类型就行了呢?那把SQL语句该成:select * from A w 阅读全文
posted @ 2022-07-05 09:50 九五小庞 阅读(625) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-07-03 08:31 九五小庞 阅读(15) 评论(0) 推荐(0)
摘要: public class Demo5 { public static void main(String[] args) { int a=10; int b=20; a+=b; System.out.println("a+"+a); //当前面为String类型时,自动转为Sting System.o 阅读全文
posted @ 2022-07-03 08:24 九五小庞 阅读(55) 评论(0) 推荐(0)
摘要: public class Demo4 { public static void main(String[] args) { //逻辑运算符的使用 boolean a=true; boolean b=false; System.out.println("a&&b:"+(a&&b)); System.o 阅读全文
posted @ 2022-07-03 08:05 九五小庞 阅读(24) 评论(0) 推荐(0)
摘要: 修改Mysql数据库默认密码后登陆报 ERROR 2003 (HY000): Can't connect to MySQL server on 'localhost' (10061) 注意:当修改Mysql数据库的默认端口号后,在连接数据库的时候,需要加上端口号 mysql -uroot -pjfy 阅读全文
posted @ 2022-06-29 15:58 九五小庞 阅读(143) 评论(0) 推荐(0)
摘要: public class Demo3 { //静态常量,属于类,值是固定的不可变的 final static double d=123.23; //静态变量,属于类 static int i=1000000; //成员变量,属于实例 String string,string1; String str 阅读全文
posted @ 2022-06-27 22:46 九五小庞 阅读(29) 评论(0) 推荐(0)
摘要: 代码示例: public class Demo2 { public static void main(String[] args) { //类型转换的练习 /** * @param 类型转换从低到高 byte ,short(char),int,long,float,double */ byte b 阅读全文
posted @ 2022-06-27 21:27 九五小庞 阅读(26) 评论(0) 推荐(0)
摘要: 练习代码: 1 public class Demo1 { 2 public static void main(String[] args) { 3 System.out.println("字符类型练习"); 4 //byte占一个字节范围-128-127 5 byte mnu=-128; 6 //s 阅读全文
posted @ 2022-06-27 21:00 九五小庞 阅读(48) 评论(0) 推荐(0)
摘要: 1.JAVA中的关键字都有哪些呢 2.java中的标识符 阅读全文
posted @ 2022-06-27 20:55 九五小庞 阅读(27) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 25 下一页