码迷,mamicode.com
首页 >  
搜索关键字:static    ( 45277个结果
SpringBoot项目取消静态文件访问限制
spring: #thymeleaf thymeleaf: cache: false prefix: classpath:/templates/ check-template-location: true suffix: .html encoding: utf-8 mode: HTML #这个是关键 ...
分类:编程语言   时间:2021-06-02 19:47:35    阅读次数:0
Java mybatis日期比较查询
public static SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd");public static SimpleDateFormat format1 = new SimpleDateFormat( "yyyyMMdd HH:m ...
分类:编程语言   时间:2021-06-02 19:42:04    阅读次数:0
4的幂 算法
package whale.leetcode.simple; /** * @Author: WhaleFall541 * @Date: 2021/5/31 23:22 */ public class PowerOfFour { public static void main(String[] arg ...
分类:编程语言   时间:2021-06-02 19:35:24    阅读次数:0
InetAddress类
package kuangs.lesson1;import java.net.InetAddress;import java.net.UnknownHostException;//测试IPpublic class TestInetAddress { public static void main(S ...
分类:Web程序   时间:2021-06-02 19:04:04    阅读次数:0
barcode EAN13 12位计算出最后一位
/** * 计算barcode最后一位 * @param code 12位的barcode * @return */ public static String padBarcode(String code){ if( null == code || code.length() != 12 ){ th ...
分类:其他好文   时间:2021-06-02 18:53:48    阅读次数:0
CompletableFuture 使用详解
1、 runAsync 和 supplyAsync方法 CompletableFuture 提供了四个静态方法来创建一个异步操作。 public static CompletableFuture<Void> runAsync(Runnable runnable) public static Comp ...
分类:其他好文   时间:2021-06-02 17:33:34    阅读次数:0
Java使用ArrayList、HashMap实现三人斗地主
ArrayList实现 code import java.util.ArrayList; import java.util.Collections; public class PokerDemo { public static void main(String[] args) { // 使用Arra ...
分类:编程语言   时间:2021-06-02 16:52:04    阅读次数:0
标识符
public class HelloWorld { public static void main(String[] args) { //大小写十分敏感 String Man="qinjiang"; String man="qinjiang"; String Ahello="qinjiang"; S ...
分类:其他好文   时间:2021-06-02 16:40:41    阅读次数:0
leetcode 两个单链表两数相加
题目 package whale.leetcode.simple; /** * @Author: WhaleFall541 * @Date: 2021/5/29 20:30 */ public class AddTwoSumLinkedList { public static class ListN ...
分类:其他好文   时间:2021-06-02 16:21:23    阅读次数:0
【C++ Primer Chapter 6 总结】函数
1.变量名的作用域(the scope of name) 对象的生命周期(the lifetime of an object) 2.各源文件(.cpp)可以单独编译得到目标代码(.obj),所有目标代码链接得到可执行程序(.exe) 3.局部静态对象 local static objects 在通过 ...
分类:编程语言   时间:2021-06-02 15:48:31    阅读次数:0
45277条   上一页 1 ... 17 18 19 20 21 ... 4528 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!