package com.waibizi.demo07; @SuppressWarnings("all") public class Singleton_pattern { public static void main(String[] args) { // TODO Auto-generated ...
分类:
其他好文 时间:
2019-12-23 16:45:55
阅读次数:
98
python创建数据库操作 #!/usr/bin/python3 # -*- coding: utf-8 -*- # @Time : 2019/12/23 14:01 """ grant all privileges on *.* to 'bkuser'@'%' identified by 'bku ...
分类:
数据库 时间:
2019-12-23 14:57:58
阅读次数:
86
题目如下: An integer has sequential digits if and only if each digit in the number is one more than the previous digit. Return a sorted list of all the in ...
分类:
其他好文 时间:
2019-12-23 10:27:41
阅读次数:
71
1.查看目录结构命令ls(list)功能:列出目录内容 格式:ls[参数][文件或目录] -a或--all 所有文件和目录。注意隐藏文件、特殊目录、以“.”开头的和以“..”开头的 -l 使用详细格式列表 -t 用文件和目录的更改时间排序 -r 反向排序 --help 在线帮助 常用: ls -l ...
分类:
系统相关 时间:
2019-12-23 00:58:02
阅读次数:
127
Properties Properties This is a full list of all the available properties that can be used within your routes.yaml config file to manipulate your URL ...
分类:
其他好文 时间:
2019-12-23 00:53:48
阅读次数:
109
[TOC] SELECTING SELECTing single columns 格式: select xx from xx SELECT不区分大小写 SELECTing multiple columns 格式: select A,B,C.. from xx; select all 选择数据库里全部 ...
分类:
数据库 时间:
2019-12-22 21:42:27
阅读次数:
127
MSDS 596 Homework 10 Due November 28 2017Notes. The lowest grade among all eleven homework will be dropped, so NO late submission will beaccepted. All ...
分类:
其他好文 时间:
2019-12-22 20:22:13
阅读次数:
86
MSDS596 Homework 9 (Due in class on Nov 14) Fall 2017Notes. The lowest grade among all twelve homework will be dropped, so NO late submission will bea ...
分类:
其他好文 时间:
2019-12-22 20:05:36
阅读次数:
54
//jq-util.js$.extend({ Util:{ /* 浏览器 */ browser:{ IE: !!document.all, IE6: !!document.all && !window.XMLHttpRequest, IE7: !!document.all &&... ...
分类:
Web程序 时间:
2019-12-22 16:50:54
阅读次数:
105
package com.waibizi.demo02; /** * 单例设计模式之饿汉式(静态代码块) * 这种方式与饿汉式静态常量的方式是类似的,类装载的时候也有直接创建对象 * @author 歪鼻子 * */ @SuppressWarnings("all") public class Sing ...
分类:
其他好文 时间:
2019-12-22 14:54:15
阅读次数:
96