第一次见到这个东西实在公司的框架里,刚开始还挺郁闷怎么框架的Application_Start里没东西,初始化的那些代码都哪去了,后来通过一些线索找到了PreApplicationStartMethodAttribute。这里简单记录一下。1. 作用指定某个函数在站点的Application_Sta...
分类:
移动开发 时间:
2015-06-29 23:49:30
阅读次数:
245
package producer_customer;public class ProducerCustomer1 {public static int limit = 10;public static int have = 0;public static int start = 0;Task[] t...
分类:
编程语言 时间:
2015-06-29 23:48:13
阅读次数:
190
1.模仿wc的行为,统计一个文本文件的文件的字符数、行数、单词数.awk '{numOfChar+=length($0);numOfWord+=NF}END{print numOfChar" " numOfWord" "NR }' file2.上面的例子中有个问题,统计的字符数中包含空格,那么不包含...
分类:
其他好文 时间:
2015-06-29 23:48:02
阅读次数:
185
declare cursor cur_emp is select t.* from scott.emp t;begin for r_emp in cur_emp loop dbms_output.put_line(r_emp.empno ...
分类:
数据库 时间:
2015-06-29 23:48:20
阅读次数:
179
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:
数据库 时间:
2015-06-29 23:49:26
阅读次数:
256
循环语句是程序最基本的语法,但往往容易出现让你意想不到的死循环,为之在each函数上做限制,避免死循环。控制台中运行查看结果:function each(arr, fn){ var maxTimes=1e7; var curTimes=0; var length=arr.length; fo...
分类:
其他好文 时间:
2015-06-29 23:46:58
阅读次数:
113
declare v_sal number;begin select t.sal into v_sal from scott.emp t where rownum <= 1; dbms_output.put_line(v_sal);end;
分类:
数据库 时间:
2015-06-29 23:48:05
阅读次数:
239
Given a sorted integer array without duplicates, return the summary of its ranges.For example, given[0,1,2,4,5,7], return["0->2","4->5","7"].题目大意:给一个有...
分类:
其他好文 时间:
2015-06-29 23:47:05
阅读次数:
116
请先保证已安装QT,没有请参考http://www.cnblogs.com/kavs/p/4608926.html 安装QT。新建threads文件夹存放项目:mkdir threadssudo gedit main.cpp输入如下代码:#include #include "threaddialog...
分类:
编程语言 时间:
2015-06-29 23:47:55
阅读次数:
234
--PACKAGECREATE OR REPLACE PACKAGE test_141215 is TYPE type_ref IS record( ENAME VARCHAR2(20), SAL NUMBER(10)); TYPE t_type_ref IS...
分类:
数据库 时间:
2015-06-29 23:45:37
阅读次数:
151
declare v_empno scott.emp.empno%type; v_sal scott.emp.sal%type; cursor cur_emp(v_empno number default 7369) is select t.empno, t.sal...
分类:
数据库 时间:
2015-06-29 23:46:37
阅读次数:
198
清楚利弊,用好内联内联的语法在类声明中定义方法;内联方法放在类声明之外,但必须出现在头文件中,且内联方法声明中使用inline标识;注:inline只是对编译器的建议,是否内联的决定权在编译器;内联节省的开销函数调用开销调用间优化 优秀的编译器可是内联方法的边界难以区分(将代码内联后,对代码进行重新...
分类:
其他好文 时间:
2015-06-29 23:46:23
阅读次数:
121
declare v_empno scott.emp.empno%type; v_sal scott.emp.sal%type; cursor cur_emp is select t.empno, t.sal from scott.emp t;begin op...
分类:
数据库 时间:
2015-06-29 23:47:12
阅读次数:
153
一、介绍 Subversion 简称就是svn服务器,用来托管代码的,类似的还有git 1)Centos6.6 2)Subversion二、安装yum -y install subversion三、配置$ vi /etc/init.d/svnserve#!/bin/bash## svnserv...
分类:
其他好文 时间:
2015-06-29 23:45:01
阅读次数:
274
0. enablesReturnKeyAutomatically默认为No,如果设置为Yes,文本框中没有输入任何字符的话,右下角的返回按钮是disabled的。1.borderStyle设置边框样式,只有设置了才会显示边框样式 text.borderStyle = UITextBorderSty....
分类:
其他好文 时间:
2015-06-29 23:46:23
阅读次数:
256
解决办法:1, 使用GCD用主线程跳转dispatch_async(dispatch_get_main_queue(), ^{ //跳转代码 ...});2, 召唤主线程, 使用performSelector在主线程随便执行一个方法[self performSelector:@sel...
分类:
移动开发 时间:
2015-06-29 23:46:13
阅读次数:
225
Java中变量分为静态变量,实例变量,临时变量。他们在JVM中存储的位置如下:静态变量位于方法区实例变量作为对象的一部分,保存在堆中。临时变量保存于栈中,栈随线程的创建而被分配。附JVM结构图
分类:
其他好文 时间:
2015-06-29 23:44:40
阅读次数:
192