码迷,mamicode.com
首页 > 其他好文
文件流(二)
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
UIImageView和UIButton
1> 使用场合* UIImageView: 如果仅仅是显示图片,不需要监听图片的点击* UIButton: 既要显示图片,又要监听图片的点击2> 相同:能显示图片3> 不同点* UIButton能处理点击事件, UIImageView不能处理点击事件* UIButton既能显示图片, 又能显示文字*...
分类:其他好文   时间:2014-05-22 16:02:38    阅读次数:198
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
C#中的数组
一维数组:可以如下例所示声明一个由 5 个整数组成的数组:int[] myArray = new int [5];此数组包含从 myArray[0] 到 myArray[4] 的元素。new运算符用于创建数组并将数组元素初始化为它们的默认值。在此例中,所有数组元素都初始化为零。可以用相同的方式声明存...
分类:其他好文   时间:2014-05-22 16:06:30    阅读次数:242
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
我在大学的3年
在大学的这三年时间里,编程成为了我生活的全部。 从大一上了C程序设计开始,给我印象最深刻的是大一下学期测量学的奖励作业-闭合导线测量的程序设计,虽然开发出来的是控制台应用程序,但是最让我兴奋的是真正解决现实中难以解决问题的那种快感。自己用全站仪外业测数据,然后内业自己写程序处理,分析,最后得出...
分类:其他好文   时间:2014-05-22 16:07:47    阅读次数:212
JQ each
tomjackmarry
分类:其他好文   时间:2014-05-22 16:11:02    阅读次数:198
单例模式
using System;using System.Collections.Generic;using System.Linq;using System.Text;/* * 单例模式 * 保证对象的唯一性 */namespace SingleDemo{ class Program { ...
分类:其他好文   时间:2014-05-22 16:10:25    阅读次数:222
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
JQ 替换节点
sdfsdfsdfrgrefg sdfsdfsdfrgrefg sdfsdfsdfrgrefg sdfsdfsdfrgrefg sdfsdfsdfrgrefg sdfsdfsdfrgrefg 用特定的样式包起来 ...
分类:其他好文   时间:2014-05-22 16:17:41    阅读次数:238
常用类
Runtime类,代表java程序的运行时环境,每个java程序都有一个与之对应的Runtime实例。应用程序通过该对象与其运行时环境项链。应用程序不能创建自己的Runtime实例,但是可以通过Runtime类的静态方法getRuntime()获取与之关联的Runtime对象。StringBuild...
分类:其他好文   时间:2014-05-22 16:18:20    阅读次数:215
JQ 无刷新评论
第一个帖子:随碟附送地方
分类:其他好文   时间:2014-05-22 16:19:35    阅读次数:164
erlang的汉字字符串的二进制还原成汉字
19> Hanzi = >. >20> io:format("~ts",[Hanzi]).汉字ok21> io:format("~w",[Hanzi]). >ok
分类:其他好文   时间:2014-05-22 16:22:29    阅读次数:222
Flex自定义组件开发 - jackyWHJ
一般情况下需要组件重写都是由于以下2个原因:1、在FLEX已有组件无法满足业务需求,或是需要更改其可视化外观等特性时,直接进行继承扩展。2、为了模块化设计或进一步重用,需要对FLEX组件进行组合。而Flex组件开发有2种方式:AS方式和MXML方式。对于上述第一个原因我一般采用AS方式,通过继承UI...
分类:其他好文   时间:2014-05-22 16:21:44    阅读次数:225
LINQ 操作符
using System;using System.Collections.Generic;using System.Text;using System.Linq;namespace LinQ{ class Program { static void Main(string...
分类:其他好文   时间:2014-05-22 16:27:07    阅读次数:241
Reverse digits of an integer.
Reverse digits of an integer.Example1:x = 123, return 321Example2:x = -123, return -321 1 class Solution { 2 public: 3 int reverse(int x) { 4 ...
分类:其他好文   时间:2014-05-22 16:26:23    阅读次数:165
控制UIlabel 垂直方向对齐方式的 方法
利用objective-c的category特性,修改UILabel的绘制代码
分类:其他好文   时间:2014-05-22 16:27:52    阅读次数:185
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!