码迷,mamicode.com
首页 >  
搜索关键字:string+    ( 95377个结果
Helloworld
Hello,world Java代码: public class Hello{ public static void main(String[] args){ System.out.print("Hello,world!"); }} 编译: javac Hello.java //编译生成class文 ...
分类:其他好文   时间:2021-05-24 14:06:34    阅读次数:0
CountDownLatch
countDownLatch这个类使一个线程等待其他线程各自执行完毕后再执行。 public class CountDownLatchDemo { public static void main(String[] args) throws InterruptedException{ /** * * ...
分类:其他好文   时间:2021-05-24 13:31:31    阅读次数:0
Mysql 之locate用法
locate:判断字符串(string)中是否包含另一个字符串(subStr) 函数返回subStr在string中出现的位置 一、使用方法 locate(subStr,string) > 0 二、功能类似函数 POSITION(substr IN str) 函数返回字符串中第一次出现的子字符串的位 ...
分类:数据库   时间:2021-05-24 13:28:48    阅读次数:0
ThreadLocal的三个方法简介
ThreadLocal可以让一个对象是共享变量,统一设置初始值,但是每个线程对这个对象的修改都是互相独立的。 ...
分类:其他好文   时间:2021-05-24 13:09:22    阅读次数:0
两阶段终止模式volatile版本
public class Test { public static void main(String[] args) throws InterruptedException { TwoPhaseTermination tpt = new TwoPhaseTermination(); tpt.star ...
分类:其他好文   时间:2021-05-24 13:06:08    阅读次数:0
东西南北中布局
package cn.rushangw.lesson01;import java.awt.*;public class TestBorderLayout { public static void main(String[] args) { Frame frame = new Frame("TestB ...
分类:其他好文   时间:2021-05-24 13:01:24    阅读次数:0
面板和监听关闭窗口事件
package cn.rushangw.lesson01;import sun.awt.WindowClosingListener;import java.awt.*;import java.awt.event.WindowAdapter;import java.awt.event.WindowEv ...
分类:其他好文   时间:2021-05-24 12:52:46    阅读次数:0
leetcode 415 字符串相加
简介 简单题, 按照正常人的思路即可 code C++代码写复杂了, 应该, 补0的话可以省去判断谁是长字符串谁是短字符串 class Solution { public: string addStrings(string num1, string num2) { reverse(num1.begi ...
分类:其他好文   时间:2021-05-24 12:50:46    阅读次数:0
Swagger的学习
#Swagger 号称世界上最流行的Api框架; RestFul Api文档在线自动生成工具=>Api文档与API定义同步更新 直接运行,可以在线测试API接口 支持多种语言:(Java,Php...) Swagger官网 在项目中使用Swagger需要springbox: swagger2 ui ...
分类:其他好文   时间:2021-05-24 12:50:24    阅读次数:0
jsonCPP
jsoncpp是一个用于操作json数据的C++开源库 代码地址:https://github.com/open-source-parsers/jsoncpp 使用文档:http://open-source-parsers.github.io/jsoncpp-docs/doxygen/index.h ...
分类:Web程序   时间:2021-05-24 12:49:23    阅读次数:0
95377条   上一页 1 ... 38 39 40 41 42 ... 9538 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!