码迷,mamicode.com
首页 > 其他好文 > 日排行
LINQ 操作符(二)
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Lambda表达式{ class Program ...
分类:其他好文   时间:2014-05-22 16:16:25    阅读次数:292
单例模式
using System;using System.Collections.Generic;using System.Linq;using System.Text;/* * 单例模式 * 保证对象的唯一性 */namespace SingleDemo{ class Program { ...
分类:其他好文   时间:2014-05-22 16:10:25    阅读次数:222
JQ each
tomjackmarry
分类:其他好文   时间:2014-05-22 16:11:02    阅读次数:198
我在大学的3年
在大学的这三年时间里,编程成为了我生活的全部。 从大一上了C程序设计开始,给我印象最深刻的是大一下学期测量学的奖励作业-闭合导线测量的程序设计,虽然开发出来的是控制台应用程序,但是最让我兴奋的是真正解决现实中难以解决问题的那种快感。自己用全站仪外业测数据,然后内业自己写程序处理,分析,最后得出...
分类:其他好文   时间:2014-05-22 16:07:47    阅读次数:212
Maximum Depth of Binary Tree
Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthest le...
分类:其他好文   时间:2014-05-22 16:05:56    阅读次数:239
C#中的数组
一维数组:可以如下例所示声明一个由 5 个整数组成的数组:int[] myArray = new int [5];此数组包含从 myArray[0] 到 myArray[4] 的元素。new运算符用于创建数组并将数组元素初始化为它们的默认值。在此例中,所有数组元素都初始化为零。可以用相同的方式声明存...
分类:其他好文   时间:2014-05-22 16:06:30    阅读次数:242
ref 关键字out关键字
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace outAndref{ class Program ...
分类:其他好文   时间:2014-05-22 16:04:40    阅读次数:258
UIImageView和UIButton
1> 使用场合* UIImageView: 如果仅仅是显示图片,不需要监听图片的点击* UIButton: 既要显示图片,又要监听图片的点击2> 相同:能显示图片3> 不同点* UIButton能处理点击事件, UIImageView不能处理点击事件* UIButton既能显示图片, 又能显示文字*...
分类:其他好文   时间:2014-05-22 16:02:38    阅读次数:198
文件流(二)
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:其他好文   时间:2014-05-22 16:00:38    阅读次数:196
JQ 模仿注册时等待的时间
sdfsdfsdfihoserfidfvg
分类:其他好文   时间:2014-05-22 16:00:02    阅读次数:209
JQ 更改li 颜色
国足朝鲜队美国队韩国队巴西队越南队伊拉克队
分类:其他好文   时间:2014-05-22 15:58:46    阅读次数:217
谈写代码的原则:性能高效 方法简洁 思路清晰 整体美观
我们的程序课只关心能不能把一个功能实现。不会关注怎么实现以及背后的我坚信性能非常重要,给客户做项目,三天两头出问题,动不动系统写出来的网站访问量一大就报503.经常遭到黑客攻击,资料被改得后果很严重.举几个个课堂例子说明此原则://字符串拼接下面是课堂上的代码string sqlstr="ins.....
分类:其他好文   时间:2014-05-22 15:57:25    阅读次数:393
C#常用的内置委托
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 内置委托{ static class Program .....
分类:其他好文   时间:2014-05-22 15:58:08    阅读次数:159
Qt写入txt文件方法
void MainWindow::on_saveBtn_clicked(){ //本函数只是单独测试Qt保持为txt文本功能,与本串口程序无任何关系 QDateTime da_time; QString time_str = da_time.currentDateTime().toString("y...
分类:其他好文   时间:2014-05-22 15:56:48    阅读次数:333
C#生成高清缩略图 (装在自OPEN经验库)
C# 图片 高清缩略图
分类:其他好文   时间:2014-05-22 15:55:33    阅读次数:216
Objective C Foundation基础框架[转]
iOS Foundation基础框架就是以Foundation.h头文件的库 #import Mac OS X和iOS都使用了Foundation基础框架。该框架中有很多日后开发常用的API,非常基础重要。以下就常用的类和结构做个介绍。 NSObjct NSObject类,是ObjC类族...
分类:其他好文   时间:2014-05-22 15:56:09    阅读次数:335
二维数组
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 二维数组{ class Program { ...
分类:其他好文   时间:2014-05-22 15:54:53    阅读次数:227
JQ 动态添加节点
sdfsdfsdf sdfsdfsdf sdfsdfsdf sdfsdfsdf sdfsdfsdf sdfsdfsdf ...
分类:其他好文   时间:2014-05-22 15:53:33    阅读次数:193
序列化反序列化
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 序列化反序列化{ c...
分类:其他好文   时间:2014-05-22 15:52:52    阅读次数:264
Add a system call on Ubuntu 13.04(x64) with x86_64
We added a system call to modify idt table, then programed it inmodify_idt.c1. Put our modify_idt.c file in/usr/src/linux-3.10.15/arch/x86/kernel2./us...
分类:其他好文   时间:2014-05-22 15:51:03    阅读次数:269
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!