使用定时执行来做模拟,数据不是动态,但是BMap的API使用方法是可以用的。
分类:
其他好文 时间:
2015-01-14 14:14:54
阅读次数:
253
System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();1.程序集的版本信息由下面四个值组成:主版本、次版本、内部版本号、修订号,以实心原点分开;2.设置的版本信息不足的部分会依次自动补零,如下所示...
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Text;using System.Reflection;using System.Collections;us...
分类:
Web程序 时间:
2015-01-13 15:50:13
阅读次数:
203
private void GetInfo(T info) { Type t = info.GetType(); System.Reflection.PropertyInfo[] list = t.GetProperties(); ...
分类:
其他好文 时间:
2015-01-10 19:40:27
阅读次数:
138
程序员的学习过程是无止境的,程序员学习的途径是多样的。可以从视频教程中领悟,也可以从他人的代码中理解。但当我们专注于某一个平台在开发的时候,对于某个API使用或者功能实现有疑问,通常简单的测试可以让我们知道可能的效果,异或网上搜索一下别人的经验,不过最好的途径应该还是阅读官方的文档解释。常常可以更全...
分类:
移动开发 时间:
2015-01-09 12:22:13
阅读次数:
174
团队博客:http://rdc.taobao.com/team/jm/archives/tag/zookeeper《ZooKeeper快速搭建》http://nileader.blog.51cto.com/1381108/795230《ZooKeeper Java API 使用样例》http://n...
分类:
其他好文 时间:
2015-01-09 12:06:57
阅读次数:
151
using System;using System.Data;using System.Reflection;using System.Data.Common;using System.Data.SqlClient;using System.Collections.Generic;namespace...
分类:
其他好文 时间:
2015-01-08 17:23:39
阅读次数:
168
Core Animation是一组非常强大的动画处理API,使用它能做出非常炫丽的动画效果,而且往往是事半功倍,使用它需要先添加QuartzCore.framework和引入对应的框架。开发步骤:①初始化一个动画对象(CAAnimation)并设置一些动画相关属性②添加动画对象到层(CALayer)...
分类:
其他好文 时间:
2015-01-07 14:45:29
阅读次数:
290
Object Reflection is a feature in Java which provides a way to get reflective information about Java classes and objects, such as:1 Getting informat.....
分类:
编程语言 时间:
2015-01-06 17:48:11
阅读次数:
135
使用jQuery时,有些API容易混淆,通过API、源码记录心得如下:1. $elem.attr()、$elem.prop() 1)Attribute values are strings with the exception of a few attributes such as value...