码迷,mamicode.com
首页 >  
搜索关键字:public    ( 82854个结果
动态代理 ---jdk
先上一个标准用法 接口 public interface Dog { void run(); int eatCount(); boolean eta(String name); } 实现 public class GunDog implements Dog { @Override public vo ...
分类:其他好文   时间:2021-03-15 11:09:49    阅读次数:0
springboot静态资源访问探究
在springboot中,我们可以使用以下方式处理静态资源 一、webjars → localhost:8080/webjars/ 获取依赖坐标webjars官网 倒入坐标 查看目录 二、public, static, /** , resources → localhost:8080/ 三、优先级: ...
分类:编程语言   时间:2021-03-15 11:07:45    阅读次数:0
Markdown 学习
| # Markdown 学习 | | | | 标题:通过 # + 空格 | | | | ## 二级标题 | | | | 二级标题:## + 空格 | | | | ### 三级标题 | | | | 三级标题:### + 空格 | | | | | | | | | | | | ## 字体 | | | | ...
分类:其他好文   时间:2021-03-15 11:07:34    阅读次数:0
抽象类和接口
抽象类 //当定义一个抽象方法的时候,它的类也必须是抽象类 public abstract class Person { //这就是抽象方法,它并没有方法体 public abstract void text(); } //因为它并不需要方法体,当Person实例化后,系统不会为抽象方法分配内存空间 ...
分类:其他好文   时间:2021-03-15 11:06:38    阅读次数:0
数组的使用
数组的使用 For-Each 循环 普通的for循环 数组作方法入参 数组做返回值 package com.liuqi.array; public class ArrayDemo04 { public static void main(String[] args) { int[] arrays = ...
分类:编程语言   时间:2021-03-15 11:04:39    阅读次数:0
2021-3-13 xml的增删改查
public void XmlAdd(string filename, List<People> pList) { try { List<People> peoples = XmlDeSerializer(filename); foreach (var item in pList) { People ...
分类:其他好文   时间:2021-03-15 10:59:05    阅读次数:0
一个字符串由a-z和逗号.组成,要求反转字符串,以逗号.分割。不能使用split
public class Test { public static void main(String[] arg0){ String s = "asd....dfa...d.fee.c"; System.out.println(new Test().getReverseStr(s)); } publ ...
分类:其他好文   时间:2021-03-15 10:53:11    阅读次数:0
1461. Check If a String Contains All Binary Codes of Size K (M)
Check If a String Contains All Binary Codes of Size K (M) 题目 Given a binary string s and an integer k. Return True if every binary code of length k is ...
分类:其他好文   时间:2021-03-15 10:41:54    阅读次数:0
日期样式常量及用法
/// <summary> /// 日期格式 2019-04 /// </summary> public const string DATE_MONTH_FORMAT = "yyyy-MM"; /// <summary> /// 日期格式 2019-04-25 /// </summary> publ ...
分类:其他好文   时间:2021-03-15 10:39:21    阅读次数:0
c# 线程池多任务处理并返回值
先新建一个封装类 包含 manual和返回值 using System;using System.Threading; public class ThreadReturnData { public ManualResetEvent manual; public string res; public ...
分类:编程语言   时间:2021-03-12 14:24:55    阅读次数:0
82854条   上一页 1 ... 90 91 92 93 94 ... 8286 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!