推荐
专栏
教程
课程
飞鹅
本次共找到493条
string
相关的信息
Wesley13
•
3年前
java读取自定义的.properties 配置文件 中的key
/读取.properties配置文件@parampropertiesUrl配置文件的路径@return配置文件中的keyvalue值/publicstaticMap<String,StringgetPrope
薛定谔的盒子猫
•
3年前
PHP写入日志文件
/写入文件$paytype文件名$content内容(string类型)/publicstaticfunctiondingdinglog($paytype,$content)$filename$SERVER'DOCUMENTROOT'.'/log/';$filename$filename.$paytype.
Stella981
•
3年前
Set和List如何转换
★ 数组转Collection使用ApacheJakartaCommonsCollections:1.importorg.apache.commons.collections.CollectionUtils; 3.String\\strArray{"aaa","bbb","ccc"}; 4.L
Wesley13
•
3年前
GO值类型与引用类型
值类型值类型包括基本数据类型,int,float,bool,string,以及数组和结构体(struct)。值类型变量声明后,不管是否已经赋值,编译器为其分配内存,此时该值存储于栈上。值类型的默认值:varaint//int类型默认值为0varbstring//string类型默认值为n
Easter79
•
3年前
Swift解读专题四——字符串与字符
Swift解读专题四——字符串与字符一、引言 Swift中提供了String类型与Characters类型来处理字符串和字符数据,Swift中的String类型除了提供了许多方便开发者使用的方法外,还可以与Foundation框架的NSString类进行转换,使用起来十分方便。二
Wesley13
•
3年前
Java ASM 简单例子
Test的代码比较简单publicclassTest{/\\\@paramargs\/publicstaticvoidmain(String\\args){test01();}staticvoidtest01(){System.out.println("HelloInTes
Stella981
•
3年前
BlockingQueue队列的使用
import java.util.concurrent.ArrayBlockingQueue;import java.util.concurrent.BlockingQueue;public class BlockingQueueTest { public static void main(String args)
Stella981
•
3年前
AspectJ AOP学习基础
一、切入点表达式 1、execution:匹配方法的执行 格式:execution(修饰符返回值类型包.类.方法(参数)throw异常) 1.1修饰符,表示方法的修饰符,一般省略。 1.2返回类型String表示返回String;void表示没有返回值;\表示返回任意类型,包括无返回值。
Wesley13
•
3年前
JS格式化时间(支持小程序,兼容IOS)
constREGEX/(\d{4})(\d{2})(\d{2})T(\d{2}):(\d{2}):(\d{2})//@functionformattime@paramval,format@return{string}@example
Stella981
•
3年前
CountDownLatch 计数栓
import java.util.concurrent.CountDownLatch;/ Created by zyBourn on 15/12/25. /public class Entity { public static void main(String args)
1
•••
19
20
21
•••
50