在.NET
3.5中提供了一套全新的接口来实现对RSS和ATOM这两种数据文件的读写。非常方便。下面演示一下1.
首先要添加一个引用System.ServiceModel.Webusing System.ServiceModel.Syndication;using
System.Xml;2. 读取R...
分类:
Web程序 时间:
2014-04-30 04:51:29
阅读次数:
513
1. 什么是WCFWCF是创建面向服务应用程序的一个框架,用WCF, 你可以发送异步消息。
一个服务的终结点可以是服务宿主在IIS上面,也可以是一个服务宿主在应用程序上面。一个终结点也可以是客户端的一个服务,它向服务器的终结点请求数据。消息可以是一个简单的字符或者字符串,如XML,也可以是复杂的二....
分类:
其他好文 时间:
2014-04-30 03:39:32
阅读次数:
336
题目: Given an array of integers, find two numbers
such that they add up to a specific target number. The function twoSum should
return indices of the t...
分类:
其他好文 时间:
2014-04-30 03:20:07
阅读次数:
502
//1.创建一个数组对象 int、float、char等等C语言的类型无法直接放到OC的数组里面
NSMutableArray*array = [NSMutableArrayarrayWithObjects:@"1",@"2",nil];
//2.使用NSNumber对NSInte...
分类:
其他好文 时间:
2014-04-30 00:53:19
阅读次数:
519
Given an arraySofnintegers, are there
elementsa,b,c, anddinSsuch thata+b+c+d= target? Find all unique quadruplets in
the array which gives the sum of ...
分类:
其他好文 时间:
2014-04-29 22:40:00
阅读次数:
438
package exp { object Main { def main(args:
Array[String]): Unit = { B[String].say("hello");
//B[String]后的括号可以省略,编译器知道这不是要用类型B而是要...
分类:
其他好文 时间:
2014-04-29 22:15:21
阅读次数:
500
javascript 的引用类型大致分为:Object 类型、Array 类型、Date
类型、RegExp 类型、Function 类型、基本包装类型和单体内置对象。这里我们着重介绍Object 类型、Array 类型和RegExp
类型。【Object 类型】创建Object 实例的方式有两种,...
分类:
编程语言 时间:
2014-04-29 20:54:12
阅读次数:
606
吐槽:微信api很无语,部分用xml,部分用json。
分类:
微信 时间:
2014-04-28 21:51:47
阅读次数:
844