1、工具->扩展和更新->联机2、右上角搜索框搜索NuGet,选择NuGet Package Manager for Visual Studio 2013,安装后重启VS下面通过添加Newtonsoft.Json测试NuGet是否安装成功:3、工具->NuGet程序包管理器->管理解决方案的NuGe...
分类:
其他好文 时间:
2014-07-02 23:50:25
阅读次数:
561
我们在使用Oracle时, 可以利用Oracle自带的EM(Enterprise Manager)来更方便的管理我们的数据库。但是有时候我们的em却有时候无法连接,造成这个问题的原因有好多,例如没有正确的配置hostname,或者操作系统的防火墙问题等等。如果出现了问题,我们能否快速的重建em呢?....
分类:
数据库 时间:
2014-07-02 20:30:49
阅读次数:
236
如果你的程序因太大(超过640KB)而无法在DOS下运行,有两种办法可为该程序提供更多的内存。一种办法是使用覆盖管理程序(overlay manager)。覆盖管理程序用来管理程序的模块,并根据需要把它们从磁盘中读入内存或从内存中删去。这样,即使你的程序有几兆字节那么大,仍然可以在 只有640KB可...
分类:
其他好文 时间:
2014-07-02 14:20:34
阅读次数:
144
@interface FirstViewController ()
@property (nonatomic,assign)BOOL isplay;
@end
@implementation FirstViewController
@synthesize isplay;
- (void)viewDidLoad
{
[super
viewDid...
分类:
其他好文 时间:
2014-07-02 10:47:22
阅读次数:
191
简要分析一下build.prop是如何生成的。Android的build.prop文件是在Android编译时收集的各种property(LCD density/语言/编译时间, etc.),编译完成之后,文件生成在out/target/product//system/目录下。在Android运行时...
分类:
移动开发 时间:
2014-07-01 16:56:01
阅读次数:
515
#import "MainViewController.h"
#import "Video.h"
#define kBaseURL @"http://192.168.3.252/~apple"
@interface MainViewController ()
@property (strong, nonatomic) NSArray *dataList;
@property (weak, no...
分类:
移动开发 时间:
2014-07-01 11:32:17
阅读次数:
238
一、实现下载文件进度控制1.代码示例 1 #import "YYViewController.h" 2 3 @interface YYViewController () 4 @property(nonatomic,strong)NSMutableData *fileData; 5 @pr...
分类:
移动开发 时间:
2014-07-01 10:36:39
阅读次数:
228
可以检查参数,一直没注意这个语言特性,忽略了很多细节,感谢 vitrox
class Person( object ):
def __init__( self, name ):
if not isinstance( name, str ):
raise TypeError( '...' )
else:...
分类:
编程语言 时间:
2014-07-01 10:00:34
阅读次数:
181
android property,相信各位android平台的开发人员用到的不会少,但是property的具体机制大家可能知道的不多,这里利用空闲时间大致了解了一些,特此分享跟大家,如有谬误,欢迎指正
android 1号进程进程init进程在开机的时候就会调用property_init函数,至于init是怎么起来的,这里不是重点,所以暂时先不介绍,property_init的具体flo...
分类:
移动开发 时间:
2014-07-01 08:25:58
阅读次数:
484
本页中列出Server application中对象和事件的详细资料。要了解如何建立一个服务应用,以及想知道它的工作流程,请阅读Server application。
对象
通用概念
属性
如下属性操作有效
value = object.property
方法
方法按照如下方式调用:
results = object:method(arguments)
事件
某些对...