标题1-6 段落,换行,行距 换行 水平线 粗体 斜体 &; symbol non-breaking space > greater than < less than 1.image tag <img src="" alt="" [title=] [width=] [height=""]> src: ...
分类:
Web程序 时间:
2020-06-05 21:18:11
阅读次数:
81
1、锁表查询 --查看锁住的表 select request_session_id spid,OBJECT_NAME(resource_associated_entity_id) tableName from sys.dm_tran_locks where resource_type='OBJECT ...
分类:
数据库 时间:
2020-06-05 19:24:45
阅读次数:
68
一、无限迭代器 1、itertools.count(start=0, step=1) 创建一个迭代器,返回一个以start开头,以step间隔的值。其大体如下: def count(start=0, step=1): # count(10) --> 10 11 12 13 14 ... # coun ...
分类:
编程语言 时间:
2020-06-05 00:27:15
阅读次数:
66
原文:.NetCore MVC 3.0 项目 区域路由配置及使用 参考文档: https://www.cnblogs.com/Allen0910/p/6629507.html https://blog.csdn.net/dupeng0811/article/details/90616546 首先需要... ...
分类:
Web程序 时间:
2020-06-04 21:58:44
阅读次数:
99
//pointer to structure #include <stdio.h> struct Person { char name[10]; char character[20]; int age; }; void display(struct Person *t); int main() { ...
分类:
其他好文 时间:
2020-06-04 21:27:17
阅读次数:
69
服务编排方式部署 以下文件具体目录 1、构建springboot后台服务dockerfile文件,vim /usr/local/docker/soc/Dockerfile FROM jdk:8MAINTAINER sinvie.cnADD ScgService.jar /root/ScgServic ...
分类:
编程语言 时间:
2020-06-04 09:11:46
阅读次数:
262
题目如下: Given two strings: s1 and s2 with the same size, check if some permutation of string s1 can break some permutation of string s2 or vice-versa (i ...
分类:
其他好文 时间:
2020-06-03 23:41:15
阅读次数:
108
Python面向对象的开发肯定离不开class,有点类似C语言的struct可以抽象描述对象并返回数据于方法。 例如,建立一个class描述笛卡尔坐标系中的点: class point(): def __init__(self, x, y): self.x = x self.y = y self.n ...
分类:
编程语言 时间:
2020-06-03 20:05:16
阅读次数:
128
What is :: (double colon) in Python when subscripting sequences? 15 Extended Slices https://docs.python.org/release/2.3.5/whatsnew/section-slices.html ...
分类:
编程语言 时间:
2020-06-03 13:25:17
阅读次数:
71