使用JetBrains的DotPeek工具可以方便地查看.net的部分源码。于是看了一下.NET的内部是如何实现排序的算法。
在System.Collections.Generic 命名空间下可以看到ArraySortHelper的实现。
public void Sort(T[] keys, int index, int length, IComparer comparer)
{ ...
分类:
Web程序 时间:
2014-06-25 19:20:12
阅读次数:
299
说起微信公众帐号,大家都不会陌生,使用这个平台能给网站或系统增加一个新亮点,直接进入正题吧,在使用之前一定要仔细阅读官方API文档。API文档地址:http://mp.weixin.qq.com/wiki/index.php使用.net实现的方法: //微信接口地址代码: weixin _wx =....
分类:
微信 时间:
2014-06-25 18:25:13
阅读次数:
539
使用System.Data.SQLite 下载地址:http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki得到System.Data.SQLite.dll添加到工程引用;建表,插入操作C#代码staticvoidMa...
分类:
数据库 时间:
2014-06-25 17:17:17
阅读次数:
442
转自:http://www.cnblogs.com/way_testlife/archive/2011/04/17/2019013.htmlPIL 下载:http://www.pythonware.com/products/pil/index.htm安装 PIL $ tar xvfz Imaging...
分类:
编程语言 时间:
2014-06-25 12:33:09
阅读次数:
305
using System;namespace ConsoleApplication10{ class Program { static void Main(string[] args) { Console.WriteLine(index(...
分类:
其他好文 时间:
2014-06-25 12:31:18
阅读次数:
180
创意来自:http://www.html5tricks.com/demo/html5-3d-cube/index.html , 同学给我发的例子...
分类:
Web程序 时间:
2014-06-25 06:56:23
阅读次数:
235
今天说说刚刚学到的两个Cookie的最经典应用:自动登录和购物车设置
一:自动登录
需要两个页面:login.jsp与index.jsp,login.jsp用来输出登录信息,index.jsp处理登录信息:如果有Cookie,则自动登录,否则创建输入信息的对象的Cookie,下次登录可以直接登录,但是我们在这里给Cookie设置一个最大保存时间30s,即登录30s后会自动退回到登陆页面,具体代...
分类:
其他好文 时间:
2014-06-25 06:54:22
阅读次数:
295
获取table中选中一行的一个单元格的值varid=$(‘input:checked‘).val();
alert($(‘input:checked‘).parent().parent().index());
varrow=$(‘input:checked‘).parent().parent().index();
varstr=document.getElementById("table1").rows[row+1].cells[5].innerText;
alert(str);..
分类:
Web程序 时间:
2014-06-25 06:21:50
阅读次数:
281
今天遇到了一个关于div层覆盖的问题,我在同一个页面引入了jqueryui中的datepiker和百度编辑器,结果datepiker日期所在的div层被覆盖了。如图所示:然后在firebug里查看,发现datepiker所在div层默认的z-index为1,而ueditor的却是999,所以被覆盖住了,所以只需要把datepiker..
分类:
Web程序 时间:
2014-06-25 06:15:21
阅读次数:
265
在languagebag.php中<?php
ob_start();
include_once‘template/index.html‘;//加载模板文件,并执行里面的php指令
$str=ob_get_contents();
ob_clean();
$zh_arr=array(//中文语言包
‘name‘=>‘姓名‘,
‘address‘=>‘地址‘,
‘date‘=>‘日期‘
);
$en_arr=array(//英文..
分类:
Web程序 时间:
2014-06-24 16:28:42
阅读次数:
300