/** * 格式化数字 */ public function float_number($number){ $length = strlen($number); //数字长度 if($length > 8){ //亿单位 $str = substr_replace(strstr($number,su ...
分类:
Web程序 时间:
2021-07-28 21:33:14
阅读次数:
0
https://www.cnblogs.com/tibos/p/14958948.html ...
分类:
Web程序 时间:
2021-07-02 16:15:29
阅读次数:
0
https://leetcode-cn.com/problems/largest-bst-subtree/ public int largestBSTSubtree(TreeNode root) { return (root == null) ? 0 : getInfo(root).size; } ...
分类:
其他好文 时间:
2021-06-29 15:58:52
阅读次数:
0
1、 rm(list = ls()) dir() for (i in list.files(pattern=".r$")) { source(i) } 2、 rm(list = ls()) dir() for (i in dir()) { if(substr(i,nchar(i)-1,nchar(i ...
分类:
编程语言 时间:
2021-06-29 15:38:29
阅读次数:
0
// CommonTest.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include <iostream> #include <atlbase.h> #incl ...
分类:
编程语言 时间:
2021-06-28 20:36:02
阅读次数:
0
BigInteger: 对大整数类进行操作,超过long能存储的范围 BigDecimal:对高精度小数进行操作 BigInteger bg = new BigInteger("0"); 初始化 并赋值为0 BigInteger类只能与BigInteger类 进行操作 常用方法: bg.add( ) ...
分类:
其他好文 时间:
2021-06-25 17:05:29
阅读次数:
0
一、TSDB prometheus可以以自定义格式在磁盘上的本地时序数据库TSDB存储时间序列数据。 ./data ├── 01BKGV7JBM69T2G1BGBGM6KB12 │ └── meta.json ├── 01BKGTZQ1SYQJTR4PB43C8PD98 │ ├── chunks │ ...
分类:
数据库 时间:
2021-06-20 18:19:57
阅读次数:
0
一、java集合框架概述 java集合可分为Collection和Map两种体系,其中: 1、Collection接口:单列数据,定义了存取一组对象的方法的集合; List:元素有序、可重复的集合 Set:元素无序,不可重复的集合 2、Map接口:双列数据,保存具有映射关系“key-value对”的 ...
分类:
编程语言 时间:
2021-06-20 17:49:56
阅读次数:
0
1、charCodeAt(index); 返回一个整数,代表下标位置上字符的Unicode的编码。 2.fromCharCode(code1,code2,code3,...); code1代表Unicode编码数 3、charAt(index); 返回指定下标的字符,超出返回一个空字符。 4.sli ...
分类:
Web程序 时间:
2021-06-16 17:34:15
阅读次数:
0
dedecms在首页调用栏目(公司介绍)内容,一般通过代码: {dede:sql sql='Select content,substring(content,1,300) as content from dede_arctype where id=1'}[field:content function ...
分类:
其他好文 时间:
2021-06-04 19:42:24
阅读次数:
0