一、异常 程序执行过程中出现的非正常流程现象 二、异常处理的格式 1.异常处理格式一 """ 最简单语法格式1 try: ____可能引发异常现象的代码 except: ____出现异常现象的处理代码 """ print("程序开始") try: # i = 5 print(i) # 此时i没有定义 ...
分类:
其他好文 时间:
2020-06-14 19:00:47
阅读次数:
138
class Solution { public static List<List<Integer>> threeSum(int[] nums) { List<List<Integer>> ans = new ArrayList(); int len = nums.length; if(nums == ...
分类:
编程语言 时间:
2020-06-13 15:42:57
阅读次数:
95
函数可以帮助用户便捷的完成很多事情,因此,MySQL中有很多内置的函数:字符串函数、日期函数、数值函数等 一、字符串函数 字符串函数是最常用的一种函数,以下列出常用的字符串函数,以供参考; 函数 功能CONCAT(s1,s2...sn) 字符串 s1,s2 等多个字符串合并为一个字符串INSERT( ...
分类:
数据库 时间:
2020-06-13 12:53:34
阅读次数:
84
通过以下案例的练习,可以掌握: Vue中插值表达式的用法 如何使用v-on:或者@绑定事件 一些共有的数据最好放到data中去挂载 => 箭头函数的特性:内部this永远指向外部this <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <ti ...
分类:
其他好文 时间:
2020-06-12 12:39:25
阅读次数:
42
用函数unistr将Oracle数据库中的Unicode转换为中文 1:保留连续的中文 select regexp_substr('Hello,大家好!greeting', '[' || unistr('\0391') || '-' || unistr('\9fa5') || ']+') from ...
分类:
数据库 时间:
2020-06-12 11:09:42
阅读次数:
353
下面的内容段是关于C#调用mmpeg进行各种视频转换的封装类的内容。 using System.Web;using System.Configuration; namespace DotNet.Utilities{ public class VideoConvert : System.Web.UI. ...
String.fromCharCode、str.length、str.charAt、str.charCodeAt、str.concat、str.slice、str.substring、str.substr、str.indexOf、str.lastIndexOf、str.trim、str.toLowe... ...
分类:
其他好文 时间:
2020-06-03 20:35:22
阅读次数:
70
freeMarker实现字符串转数字,数字转字符串,布尔值转换为字符串-freeMarker-萨瓦迪卡 http://www.swzhinan.com/post/177.html Built-ins for strings - Apache FreeMarker Manual https://fre ...
分类:
其他好文 时间:
2020-06-03 17:41:48
阅读次数:
75
var paramKey1 = 'aid'; var paramKey2 = 'name'; function getQueryString(paramKey){ var reg = new RegExp("(^|&)"+ paramKey +"=([^&]*)(&|$)"); var paramV ...
分类:
其他好文 时间:
2020-06-02 09:41:49
阅读次数:
152
package com.example.demo; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; /** * 5409. 检查一个字符串是否包含所有 ...
分类:
其他好文 时间:
2020-05-31 13:21:18
阅读次数:
66