String类概述 String表示字符串,所有的字符串字面值都是常量(如"abc","hello"),也是字符串的对象。 字符串对象有两种形式 String s1="abc" 这就是一个字符串对象 String s2=new String("abc") 这也是一个字符串对象 两种创建对象的区别 1 ...
分类:
编程语言 时间:
2021-05-24 17:06:04
阅读次数:
0
简介 使用滑动窗口 https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/solution/hua-dong-chuang-kou-by-powcai/ code C++ class Solut ...
分类:
其他好文 时间:
2021-05-24 08:33:35
阅读次数:
0
import axios from "axios"; import { getOssTicket } from "@/pages/mb/constants/API"; // 拿到ticket const getTicket = function (): any { return new Promis ...
分类:
Web程序 时间:
2021-05-04 15:31:21
阅读次数:
0
vi string_array.sh #!/bin/bash city=(Nanjing Atlanta Massachusetts Marseilles) #建立一个简单的数组echo "Extracting Substring" #演示抽取子串功能echo ${city[*]:0} #抽取整个数 ...
分类:
编程语言 时间:
2021-04-13 12:08:59
阅读次数:
0
█ 0.代码函数: ○ 0.1 边界 Integer.MAX_VALUE int[] preorder ==> preorder == null || preorder.length == 0 char[][] board ==> board == null int[][] matrix ==> ( ...
分类:
其他好文 时间:
2021-04-06 14:10:55
阅读次数:
0
点击进入【数据聚合_数据接口调用_开发者数据API开放平台】(官网) 在pom文件中,加入依赖 ``` <!--返回json数据--> <dependency> <groupId>net.sf.json-lib</groupId> <artifactId>json-lib</artifactId> ...
分类:
编程语言 时间:
2021-03-17 14:45:35
阅读次数:
0
一、 计算属性(computed) 1.计算属性是为了模板中的表达式简洁,易维护,符合用于简单运算的设计初衷。 例如: <p id="app">{{ myname.substring(0,1).toUpperCase() + myname.substring(1) }}</p> 运算过于复杂,冗长, ...
分类:
其他好文 时间:
2021-03-06 14:39:38
阅读次数:
0
private void button2_Click(object sender, EventArgs e) { foreach (Control cur in Controls) { if (cur is TextBox ) { string name = cur.Name; cur.Text = ...
<script>function getQueryVariable(variable) { var query = window.location.search.substring(1); var vars = query.split("&"); for (var i=0;i<vars.length ...
分类:
Web程序 时间:
2021-02-27 13:14:25
阅读次数:
0
1.获取字符串 利用public String substring(int beginIndex)从指定位置开始截取字符串,beginIndex为开始截取的位置。利用public String substring(int beginIndex,int endIndex)可以实现从指定的开始位置截取到 ...
分类:
其他好文 时间:
2021-02-26 13:19:59
阅读次数:
0