码迷,mamicode.com
首页 >  
搜索关键字:static    ( 45277个结果
Comparable与Comparator (2)
统计单词频率 import java.util.*; public class test { public static void main(String[] args) { final String speech = "It was the best of times, it was the wo ...
分类:其他好文   时间:2021-01-06 12:31:58    阅读次数:0
Android 逆向分析(二):动态调试实现
使用AndroidStudio 4.0以下版本,安装插件:ideasmali。 反编译apk,在AndroidMainfest.xml中添加debuggable=“true” 在smail文件中找到oncreate()并添加 invoke-static{},Landroid/os/Debug;->w ...
分类:移动开发   时间:2021-01-06 12:30:15    阅读次数:0
转:ThreadLocal系列(二)-InheritableThreadLocal的使用及原理解析
转:https://www.cnblogs.com/hama1993/p/10400265.html 一、基本使用 我们继续来看之前写的例子: private static ThreadLocal tl = new ThreadLocal<>(); public static void main(S ...
分类:其他好文   时间:2021-01-06 12:29:40    阅读次数:0
ZYNQ XC7Z020平台PPI SCUTimer中断示例程序
static void TimerInterruptHandler(void * CallBackRef) { static int sec = 0; printf("%d Seconds\n", sec++); XScuTimer * TimerInstPtr = (XScuTimer *)Cal ...
分类:其他好文   时间:2021-01-06 11:51:20    阅读次数:0
List集合的特有功能和概述。
package List; import java.util.ArrayList; public class Demo01 { public static void main(String[] args) {// demo01();// demo02();// demo03(); ArrayList ...
分类:其他好文   时间:2021-01-05 11:27:22    阅读次数:0
08.SpringCloud Gateway (新一代网关)
1.概述 基本说明 官网 上一代网关 zuul https://github.com/Netflix/zuul/wiki 当前gateway https://cloud.spring.io/spring-cloud-static/spring-cloud-gateway/2.2.1.RELEASE/ ...
分类:编程语言   时间:2021-01-05 10:55:55    阅读次数:0
jedis使用分布式锁
import redis.clients.jedis.Jedis;public class A { public static void main(String[] args) throws Exception { Jedis jedis = new Jedis("localhost", 6379) ...
分类:其他好文   时间:2021-01-05 10:52:53    阅读次数:0
Java解析XML文件
Java解析XML文件 XML是什么 XML是可扩展标记语言(EXtensible Markup Language) XML是一种标记语言(HTML也是标记语言) XML是用来传输和存储数据(HTML是用来显示数据) XML的语法规则 所以XML元素都必须有关闭标签 XML标签是对大小写敏感 XML ...
分类:编程语言   时间:2021-01-05 10:51:27    阅读次数:0
【剑指 Offer】06.从尾到头打印链表
题目描述 输入一个链表的头节点,从尾到头反过来返回每个节点的值(用数组返回)。 示例 1: 输入:head = [1,3,2] 输出:[2,3,1] 限制: 0 ? 链表长度 ? 10000 Java public class Solution06 { public static void main ...
分类:其他好文   时间:2021-01-04 11:07:36    阅读次数:0
获取对应日期的288个时刻点
/** *获取对应日期的288个时刻点 two hundred and eighty-eight *@date 2017-11-24 下午4:06:14 *@author Administrator (chenrd) */ public static List<String> getTwoHundr ...
分类:其他好文   时间:2021-01-04 10:47:27    阅读次数:0
45277条   上一页 1 ... 74 75 76 77 78 ... 4528 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!