In thefirst partof this tutorial, I have introduced the two most basic monads: the identity monad and the maybe monad. In this part, I will continue w...
分类:
其他好文 时间:
2014-11-21 12:32:50
阅读次数:
165
概念:delphi中的集合是对数学中集合概念的简单实现。要求是集合中的元素必须同类型,且必须是序数类型,且集合中可能的元素个数不能大于255。集合是P a s c a l特有的数据类型,在Visual Basic、C或C + +都没有(虽然C++ Builder提供了一种模板类称为集合,它模仿P a...
分类:
其他好文 时间:
2014-11-21 11:59:44
阅读次数:
304
作者:史宁宁(snsn1984)Clang的Lexer(词法分析器)的源码的主要位置如下:clang/lib/Lex 这里是主要的Lexer的代码;clang/include/clang/Lex 这里是Lexer的头文件代码的位置;同时,Lexer还使用了clangBasic库,所以要分析Lexer的代码,clangBasic(clang/lib/Basic)的一些代码也会用到。首先从L...
分类:
其他好文 时间:
2014-11-20 15:21:24
阅读次数:
292
jRating 是一个非常灵活的jQuery插件用于快速创建一个Ajax星型投票系统。可以设置星型数量和小数支持。功能很强大,具体大家可以看一下这个插件的js代码就知道了,下面这里演示一下这个插件有哪些功能与具体如何实现。偃师市一中Exemple 1 (Basic exemple without o...
分类:
Web程序 时间:
2014-11-19 21:50:29
阅读次数:
164
前提条件
1.Linux RHEL 6.X X86_64操作系统
2.能从安装Oracle服务器的服务器上获取Oracle相关的文件(相同OS)
软件下载
从Oracle的网址下载下面的软件包:
1) instantclient-basic-linux.x64-11.2.0.4.0.zip (59.282MB)
2)instantclient-sqlplus-linux.x64-1...
分类:
数据库 时间:
2014-11-19 11:04:31
阅读次数:
255
Threshold Binary This thresholding operation can be expressed as: So, if the intensity of the pixel is higher than , then the new pixel intensity is ....
分类:
其他好文 时间:
2014-11-18 23:53:21
阅读次数:
292
#include
#include
void sort(char *a[]);
void print(char *a[]);
int main()
{
char *a[] ={"ceo","define","basic","abc","empty"};
printf("原来的序列是:\n");
print(a);
sort(a);
printf("\n排序后的序列是:\n");
...
分类:
编程语言 时间:
2014-11-17 22:56:55
阅读次数:
461
学习 JQuery 插件开发之后, 可以将自己平时常用的功能封装成插件, 便于在不同的项目之间使用.JQuery 官网上的 插件开发教程就很不错, 简单易懂.参考网址:http://learn.jquery.com/plugins/basic-plugin-creation/http://learn...
分类:
Web程序 时间:
2014-11-17 12:14:02
阅读次数:
420
Point It represents a 2D point, specified by its image coordinates and . We can define it as: Point pt;pt.x = 10;pt.y = 8; or Point pt = Point(10, 8);...
http://www.nowamagic.net/librarys/news/detail/1400从 11 岁开始一个已经十分明确的事情就是,我要成为一名程序员。那一年我有了一台 Commodore 64 机器,开始在上面编写 BASIC 程序。我十分喜爱编程,以至于不久之后用于编程的时间就超过了...
分类:
其他好文 时间:
2014-11-15 18:31:44
阅读次数:
194