Problem: The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at which floors ...
分类:
编程语言 时间:
2020-10-05 22:34:28
阅读次数:
52
1、让属于语言内部的方法,写在Relect,整理。 2、让命令形式改为方法的形式,如dele obj.name(Reflect.deleteProperty(obj,name))、name in obj(Relect.has(obj,name))。 3、让返回合理些Object.defineProp ...
分类:
其他好文 时间:
2020-09-23 23:32:40
阅读次数:
42
mysql创建function,存储过程报错,This function has none of DETERMINISTIC, NO SQL解决办法 ...
分类:
数据库 时间:
2020-09-18 03:02:42
阅读次数:
43
原文链接:http://www.zhaojun.im/springboot-exception/ 前言 在 Web 开发中, 我们经常会需要处理各种异常, 这是一件棘手的事情, 对于很多人来说, 可能对异常处理有以下几个问题: 什么时候需要捕获(try-catch)异常, 什么时候需要抛出(thro ...
分类:
编程语言 时间:
2020-09-18 01:54:42
阅读次数:
40
1、线程状态 Thread.State public enum State { /** * Thread state for a thread which has not yet started. */ NEW,(新建) /** * Thread state for a runnable threa ...
分类:
编程语言 时间:
2020-09-18 00:09:42
阅读次数:
28
Given an integer array nums, find the contiguous subarray within an array (containing at least one number) which has the largest product. Example 1: I ...
分类:
其他好文 时间:
2020-09-18 00:08:22
阅读次数:
27
有时候,或者说经常,我们会在F5的时候遇到栈帧不平衡的问题。每每这种时候就需要我们手动alt+k调整栈帧。 我曾经非常苦恼,这是个smjb玩意,我到底该怎么调整栈帧。网上查了很多资料很多博客,但我都觉得难以理解,而且难以操作。 后来我无意间看到一篇博客,说只要用他的方法,调整栈帧是很容易的一件事,我 ...
分类:
其他好文 时间:
2020-09-17 23:17:23
阅读次数:
34
原文链接IT思维前提调试业务服务期间,服务日志需要写入es集群,发现数据写入报错。报错内容如下ElasticsearchDeprecationWarning:Inafuturemajorversion,thisrequestwillfailbecausethisactionwouldadd[10]totalshards,butthisclustercurrentlyhas[20242]/[2000
分类:
其他好文 时间:
2020-09-17 19:14:47
阅读次数:
48
QLineEdit定义为显示选中的目录,如果在打开界面立即执行获取文本框内容不会出问题,一旦选择目录后先执行其他的操作(或者需要执行多次获取目录的操作)就会出现"str" obiect has no attribute 'text',系统把self.lineedit当做了一个字符串变量,而没有真正读 ...
分类:
其他好文 时间:
2020-09-17 13:43:46
阅读次数:
58
Vim 配置 if has("autocmd") autocmd BufReadPost * \ if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif endif set encoding=utf-8 ...
分类:
系统相关 时间:
2020-09-17 12:54:28
阅读次数:
28