sqlserver触发器中分别处理insert,update,delete ...
分类:
数据库 时间:
2017-07-06 18:55:38
阅读次数:
265
PIL库学习链接:http://blog.csdn.net/column/details/pythonpil.html?&page=1 1 #-*-coding:utf-8-*- 2 __author__ = 'Deen' 3 ''' 4 题目说明: 5 将你的 QQ 头像(或者微博头像)右上角加上... ...
分类:
编程语言 时间:
2017-07-06 18:53:25
阅读次数:
203
ActiveSupport::NumberHelper.number_to_currency(amount, precision: 0) ...
分类:
其他好文 时间:
2017-07-06 18:45:33
阅读次数:
124
var str = '中'; var charCode = str.charCodeAt(0); console.log(charCode); // => 20013; str.charCodeAt(0).toString(16);//=>"4e2d" ...
分类:
其他好文 时间:
2017-07-06 18:37:40
阅读次数:
108
WM_SIZE procedure WMSize (var Message: TWMSize); message WM_SIZE; 参数说明 wParam: Specifies the type of resizing requested. 通常用来向别的窗口发送消息时,需要指定的附加信息 Valu ...
分类:
其他好文 时间:
2017-07-06 18:37:06
阅读次数:
202
#方法1:使用os.listdir import os for filename in os.listdir(r'c:\\windows'): print filename #方法2:使用glob模块,可以设置文件过滤 import glob for filename in glob.glob(r' ...
分类:
编程语言 时间:
2017-07-06 18:35:18
阅读次数:
168
Java经典面试题 生产者消费者 /** * 生产者 消费者问题 * 解释 : wait notify 方法 * sleep 与 wait的区别 * 线程锁机制 */ public class ProducerConsumer { public static void main(String[] a ...
分类:
编程语言 时间:
2017-07-06 18:32:56
阅读次数:
209
单例模式:单例模式的意思就是只有一个实例。单例模式确保某一个类只有一个实例,而且自行实例化并向整个系统提供这个实例。这个类称为单例类。 单例模式有三种:懒汉式单例,饿汉式单例,登记式单例。 1.懒汉式单例 public class Singleton { private static Singlet... ...
分类:
其他好文 时间:
2017-07-06 18:32:07
阅读次数:
96
http://blog.csdn.net/mao_xiao_feng/article/details/53444333 第一个参数input:指需要做卷积的输入图像,它要求是一个Tensor,具有[batch, in_height, in_width, in_channels]这样的shape,具体 ...
分类:
其他好文 时间:
2017-07-06 17:02:32
阅读次数:
220