日期的使用: 1、创建日期 2、日期格式化显示 3、日期的转换 4、两个日期的大小比较、日期的加减 一些知识: 全球24个时区的瓜分 格林威治标准时间GMT 世界协调时间(世界标准时间)UTC 夏日节约时间DST CST时间 CST却同时可以代表如下 4 个不同的时区: Central Standa...
分类:
编程语言 时间:
2014-08-11 00:07:00
阅读次数:
283
The Falling LeavesEach year, fall in the North Central region is accompanied by the brilliant colors of the leaves on the trees, followed quickly by ....
分类:
其他好文 时间:
2014-08-10 18:16:30
阅读次数:
314
Grand Central Dispatch (GCD)是Apple开发的一个多核编程的解决方法。dispatch queue分成以下三种:1)运行在主线程的Main queue,通过dispatch_get_main_queue获取。/*!* @function dispatch_get_main...
分类:
移动开发 时间:
2014-08-08 01:34:35
阅读次数:
351
GCD概念:Grand Central Dispatch1.queue 队列 dispatch queue 分发队列2.task 任务3.thread 线程task 是一个一个单独的任务(方法,函数,block)queue里存放的是一个或者多个taskthread 为了保证task能顺利执行,que...
分类:
移动开发 时间:
2014-08-07 12:10:30
阅读次数:
318
Description
Once upon a time, in the Kingdom of Loowater, a minor nuisance turned into a major problem.
The shores of Rellau Creek in central Loowater had always been a prime breeding ground for g...
分类:
其他好文 时间:
2014-08-06 10:37:41
阅读次数:
257
Although Model-View-Controller (MVC) is known by nearly every Web developer, how to properly use MVC in real application development still eludes many people. The central idea behind MVC is?code ...
分类:
Web程序 时间:
2014-08-04 18:28:57
阅读次数:
349
The DataTable is a central object in the ADO.NET library. Other objects that use the DataTable include the DataSet and the DataView.When accessing Dat...
分类:
其他好文 时间:
2014-08-02 15:14:03
阅读次数:
254
Purpose of a Multitenant EnvironmentA multitenant environment enables the central management of multiple PDBs in a single installation. By using a mul...
分类:
数据库 时间:
2014-07-31 20:15:17
阅读次数:
280
多核运算在iOS中concurrency编程的框架就是GCD(Grand Central Dispatch), GCD的使用非常简单。它把任务分派到不同的queue队列来处理。开发者把任务代码装到一个个block里面,操作系统把这些任务代码分派到不同的资源 里去处理,一个简单的例子来说,为什么初学者...
分类:
移动开发 时间:
2014-07-26 01:41:46
阅读次数:
271
IntroductionThe central component of any game, from a programming standpoint, is thegame loop.It allows the game to run smoothly regardless of a user'...
分类:
其他好文 时间:
2014-07-25 19:10:22
阅读次数:
352