上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: package com.zxr.stream; import java.util.ArrayList; import java.util.function.Consumer; public class Test04 { public static void main(String[] args) { 阅读全文
posted @ 2024-03-25 10:43 冷风5997 阅读(21) 评论(0) 推荐(0)
摘要: package com.zxr.stream; import java.util.ArrayList; import java.util.stream.Stream; public class Test03 { public static void main(String[] args) { Arr 阅读全文
posted @ 2024-03-25 10:28 冷风5997 阅读(15) 评论(0) 推荐(0)
摘要: package com.zxr.stream; import java.util.ArrayList; import java.util.function.Predicate; public class Test02 { public static void main(String[] args) 阅读全文
posted @ 2024-03-25 10:02 冷风5997 阅读(14) 评论(0) 推荐(0)
摘要: package com.zxr.stream; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; import java.util.stream.Stream; public class Te 阅读全文
posted @ 2024-03-25 09:41 冷风5997 阅读(24) 评论(0) 推荐(0)
摘要: 自然排序,在Student类中重写compareTo方法,关于o的理解 @Override public int compareTo(Student o) { //关于o,是红黑树中从第二个开始进入的元素,需 //要和已存在的元素比较,该o是在第二个add //调用时,传入这里的Student对象。 阅读全文
posted @ 2024-03-24 13:58 冷风5997 阅读(22) 评论(0) 推荐(0)
摘要: #include<stdio.h> void swap(int a[],int low,int high){ int temp=a[low]; a[low]=a[high]; a[high]=temp; } int CountPivot(int a[],int low,int high){ int 阅读全文
posted @ 2023-07-17 17:59 冷风5997 阅读(37) 评论(0) 推荐(0)
摘要: 触发器:删除A表的某条数据之后,将A表的某条数据插入到B表CREATE TRIGGER delete_triggerAFTER DELETE on A FOR EACH ROWBEGININSERT INTO B(oldCno,oldCname,oldCredit)VALUES(12,old.cna 阅读全文
posted @ 2023-04-18 14:39 冷风5997 阅读(33) 评论(0) 推荐(0)
摘要: <meta charset="utf-8"> <title>layui.form小例子</title> <script src="layui-v2.7.6/layui/layui.js"></script> <link rel="stylesheet" href="layui.css" media= 阅读全文
posted @ 2023-04-04 16:16 冷风5997 阅读(335) 评论(0) 推荐(0)
摘要: <meta charset="utf-8"> <title></title> <script src="js/jquery/jquery-3.6.3.js"></script> <script type="text/javascript"> $(function(){ $("#btn").click 阅读全文
posted @ 2023-04-01 15:51 冷风5997 阅读(30) 评论(0) 推荐(0)
摘要: Z 自定义标签是一种jsp组件技术,可以封装页面上频繁使用的功能,作为组件在应用程序中直接调用。自定义jsp标签有4个步骤:①.编写标签处理类②创建标签库描述文件(TLD文件)③在jsp页面中导入标签库④在jsp页面中使用自定义标签标签处理类通常继承TagSupport或者BodyTagSuppor 阅读全文
posted @ 2023-03-10 10:29 冷风5997 阅读(10) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 下一页