练习4-8原文Exercise 4.8. “Named let” is a variant of let that has the form (let )The and are just as in ordinary let, except that is bound within to a procedure whose body is a...
分类:
其他好文 时间:
2015-04-01 11:30:09
阅读次数:
149
Work QueuesIn thefirst tutorialwe wrote programs to send and receive messages from a named queue. In this one we'll create aWork Queuethat will be use...
分类:
其他好文 时间:
2015-03-31 23:58:50
阅读次数:
474
grep简介正如linux的man文件中所描述的那样: grep searches the named input FILEs (or standard input if no files are named, or if a single hyphen-minus (-) is given as file name) for lines containing a match to...
分类:
其他好文 时间:
2015-03-31 22:21:16
阅读次数:
167
在用django创建blog过程中出现了一些问题,在网上查找后现整理如下:错误1:在执行./manage.py syncdb命令后出现 no model named blog:原因: setting.py 中INSTALLED_APP 项原写入的是mysite.blog, 修改为blog即可;错误2...
分类:
其他好文 时间:
2015-03-31 21:41:33
阅读次数:
158
命名管道(named PIPE)由于基于fork机制,所以管道只能用于父进程和子进程之间,或者拥有相同祖先的两个子进程之间 (有亲缘关系的进程之间)。为了解决这一问题,Linux提供了FIFO方式连接进程。FIFO又叫做命名管道(named PIPE)。FIFO (First in, First o...
分类:
其他好文 时间:
2015-03-31 19:34:35
阅读次数:
134
Well, this week I tried to use some class things.Following areparts of my exercising codes.Definig my class named Time //note that cnt is a static ...
分类:
其他好文 时间:
2015-03-30 23:01:22
阅读次数:
164
转载请注明出处:http://www.cnblogs.com/fraud/ ——by fraudC. Cupboard and BalloonsA girl named Xenia has a cupboard that looks like an arc from ahead. The arc i...
分类:
其他好文 时间:
2015-03-30 01:23:02
阅读次数:
153
1、解析程序包#wgethttp://ftp.isc.org/isc/bind9/9.7.3/bind-9.7.3.tar.gz
#tarxvfbind-9.7.3.tar.gz
#cdbind-9.7.3.tar.gz
#./configure--prefix=/usr/local/bind9--sysconfdir=/etc/named/--disable-ipv6--enable-threads--enable-epoll--disable-chroot
#make
#makeinstall..
分类:
其他好文 时间:
2015-03-28 19:05:38
阅读次数:
414
??
STEP1:
CREATE OR REPLACE JAVA SOURCE NAMED "Employee" AS
import java.sql.*;
import oracle.jdbc.*;
public class Employee{
public static void getItEmps(){
Connection conn = nu...
分类:
数据库 时间:
2015-03-28 17:18:01
阅读次数:
155
new和delete表达式可以用来动态创建和释放单个对象,也可以用来动态创建和释放动态数组。 定义变量时,必须指定其数据类型和名字。而动态创建对象时,只需指定其数据类型,而不必为该对象命名。new表达式返回指向新创建对象的指针,我们通过该指针访问对象: int i; //named, uniniti...
分类:
编程语言 时间:
2015-03-28 10:07:20
阅读次数:
146