摘要: 工具介绍: https://www.cnblogs.com/yinjia/p/10122178.html 下载地址:https://www.postman.com/downloads/ ID:vvmgai qq邮箱 阅读全文
posted @ 2022-08-20 20:47 VVMgAI 阅读(16) 评论(0) 推荐(0)
摘要: iPhone 手机抓包软件-商店可下载 阅读全文
posted @ 2022-08-20 20:22 VVMgAI 阅读(56) 评论(0) 推荐(0)
摘要: <script>(标签) function(功能) XXX(名称)(可传参){ return true/flase;(可不写) } var ==> 定义前必须用var开头 var str = "yoyo"; var num = 123; window. alert(" "); 警告弹窗 confir 阅读全文
posted @ 2022-04-06 20:39 VVMgAI 阅读(14) 评论(0) 推荐(0)
摘要: 不区分大小写 <标签>成对出现 <head>头文件 <title>标题 网页(汉字)使用UTF-8 <mate charset="utf-8" /> <font 属性 >(color、size、face字体) <b>加粗 <img src=" ">插入图片,图片名称不能为中文(src路径) <pre 阅读全文
posted @ 2022-04-06 14:26 VVMgAI 阅读(23) 评论(0) 推荐(0)
摘要: 1 package com.stx.zx.dao; 2 3 import java.sql.Connection; 4 import java.sql.ResultSet; 5 import java.util.Scanner; 6 7 public class MyDao { 8 //用户登录 9 阅读全文
posted @ 2022-03-24 14:00 VVMgAI 阅读(206) 评论(2) 推荐(0)
摘要: 1 package com.stx.zx.test; 2 3 public class T03 { 4 public static void main ( String[] args ) { 5 int i=0; //初始化条件 6 while (i<100){ //条件判断 7 System.ou 阅读全文
posted @ 2022-02-28 14:31 VVMgAI 阅读(25) 评论(0) 推荐(0)
摘要: switch语句swit语句中的变量类型可以是:1.byte、short、int、char2.switch支持字符串String类型3.case标签必须为字符串常量或字面量 语句:switch(expression){ case value: 1 package com.stx.zx; 2 //ca 阅读全文
posted @ 2022-02-28 10:16 VVMgAI 阅读(103) 评论(0) 推荐(0)
摘要: 1 package com.stx.zx; 2 3 public class W12 { 4 public static void main ( String[] args ) { 5 for (int h = 1; h < 6; h++) { 6 for (int k = 5; k > h; k- 阅读全文
posted @ 2022-02-25 09:59 VVMgAI 阅读(34) 评论(0) 推荐(0)
摘要: 1 package com.stx.zx; 2 3 import java.util.Scanner; 4 5 public class If02 { 6 public static void main ( String[] args ) { //主方法 7 Scanner in = new Sca 阅读全文
posted @ 2022-02-24 11:14 VVMgAI 阅读(31) 评论(0) 推荐(0)
摘要: 关键词 int hello,world是连续定义,相当于int hello int world 方法是能通过对象调用的 标识符的命名不能使用关键字方法的首字母小写,类名首字母大写 byte 8位short 16位int 32位long 64位 先声明(定义)后赋值 ++自增1--自减1!=不等于== 阅读全文
posted @ 2022-02-23 21:51 VVMgAI 阅读(19) 评论(0) 推荐(0)