摘要:
#1 可以对列表增加一行,删除一行 代码块 <!DOCTYPE html> <html lang="zh-CN"> <head> <meta http-equiv="content-Type" charset="UTF-8"> <meta http-equiv="x-ua-compatible" c 阅读全文
摘要:
#1 Navicat无法连接数据库的解决办法 打开【win+r】输入CMD进入命令行界面,然后输入 alter user 'root'@'localhost' identified by '密码' password expire never; alter user 'root'@'localhost 阅读全文
摘要:
#1 常见正则表达式 #2 正则表达式 正则表达式是一种独立的语法,和编程语言没有关系,是一种匹配字符串的规则。 #3 正则表达式的使用范围 来确认某一个字符串是否符合规则 从大段的字符串中找到符合规则的内容 程序领域 1.登录注册页的表单验证 web开发 要求简单语法 2.爬虫 3.自动化开发 日 阅读全文
摘要:
1 FileOutputStream import java.io.FileNotFoundException; import java.io.FileOutputStream; public class test { public static void main(String[] args) t 阅读全文
摘要:
1 目录的遍历 import java.io.File; public class test { public static void main(String[] args) { String path = "/Users/mima000000/Desktop/xc"; File file = ne 阅读全文
摘要:
1 a++和++a a++ 先赋值,再自增 ++a 先自增,再赋值 2 三元运算符 int c = 3<5?44:66; 3 方法的参数类型区别 方法的参数为基本类型时,传递的是数据值 方法的参数是引用类型时,传递的是地址值 细细品一下下面2个例子 3-1 当方法的参数是基本类型时 public c 阅读全文
摘要:
public class test { public static void main(String[] args) { int a = 20; int b = 30; int c = a++; //先赋值再相加,c=20 a = 21 System.out.println(c); //20 Sys 阅读全文