JavaScript 严格检查模式strict 'use strict' ; 严格检查模式,预防JavaScript的随意性导致产生的一些问题,放在script标签的第一行 局部变量建议使用let去定义 <!DOCTYPE html> <html lang="en"> <head> <meta ch ...
分类:
编程语言 时间:
2021-04-07 11:05:06
阅读次数:
0
通过前面的章节我们知道Springboot会调用ServletWebServerApplicationContext#getWebServer方法启动tomcat 最终会调用TomcatWebServer#initialize这个方法,然后再调用tomcat#start方法,然后调用Lifecycl ...
分类:
数据库 时间:
2021-04-06 15:11:52
阅读次数:
0
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
分类:
编程语言 时间:
2021-04-06 15:03:33
阅读次数:
0
SQL基础 SQl简介 SQL全称是structure qurry language,由IBM在上个世纪70年代开发出来。 SQL语句的分类 DDL(数据定义数据) 主要是数据库内部对象的创建,删除,修改的操作语言 创建数据库 create database name 使用数据库 use dbnam ...
分类:
数据库 时间:
2021-04-06 14:59:58
阅读次数:
0
此博客链接: 打家劫舍2 题目链接:https://leetcode-cn.com/problems/house-robber-ii/ 题目 你是一个专业的小偷,计划偷窃沿街的房屋,每间房内都藏有一定的现金。这个地方所有的房屋都 围成一圈 ,这意味着第一个房屋和最后一个房屋是紧挨着的。同时,相邻的房 ...
分类:
其他好文 时间:
2021-04-06 14:59:12
阅读次数:
0
win10 anaconda tensorflow gpu openpose done # # To activate this environment, use # # $ conda activate wind_202102 # # To deactivate an active environ ...
水题~。 int n; bool isprime(int x) { if(x<2) return false; for(int i=2;i*i<=x;i++) if(x % i == 0) return false; return true; } bool palindrome(int x) { i ...
分类:
其他好文 时间:
2021-04-06 14:25:50
阅读次数:
0
Shortcut Keys Configure Summary You can use shortcut keys to quickly insert or modify styles or do other operations supported by Typora. You can find ...
分类:
其他好文 时间:
2021-04-06 14:21:02
阅读次数:
0
### [RFC4511 Result Code](https://datatracker.ietf.org/doc/rfc4511/?include_text=1) ``` success (0), operationsError (1), protocolError (2), timeLimit ...
分类:
其他好文 时间:
2021-04-06 14:19:59
阅读次数:
0
inet_pton 字符串转为网络字节序整数,网络字节序可以直接用于sockaddr_in。 #include <sys/socket.h> #include <netinet/in.h> #include<arpa/inet.h> atoi 字符串是ASCII 将字符串转为整数 #include ...
分类:
其他好文 时间:
2021-04-06 14:05:37
阅读次数:
0