@interface people : NSObject -(void)eat; +(void)eat; @end @implementation people -(void)eat { NSLog(@"我是被类的实例调用-方法"); } +(void)eat { NSLog(@"我是被类调用的+方 ...
分类:
其他好文 时间:
2016-04-16 12:20:31
阅读次数:
147
#import "ViewController.h" #import "SDmoreCircle.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super view ...
分类:
其他好文 时间:
2016-04-12 00:21:56
阅读次数:
111
1.Good schema design is pretty universal, but of course MySQL has special implementation details to consider. In a nutshell, it’s a good idea to keep ...
分类:
数据库 时间:
2016-04-11 22:35:25
阅读次数:
236
#import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any addit ...
分类:
移动开发 时间:
2016-04-10 21:21:04
阅读次数:
404
windoows客户端程序在中文win7操作系统上安装正常,在一台英文win7操作系统上安装后,登录的时候提示下面的错误: System.InvalidOperationException: This implementation is not part of the Windows Platfor ...
分类:
编程语言 时间:
2016-04-08 18:03:55
阅读次数:
172
#define COMMON_COMPRSSION_FACTOR 0.8f //1.设置固定的压缩系数0~1 #define MAX_IMAGE_SIZE (1 * 1024 * 1024)//2.服务器能接受的最大的图片大小1024*1024是1M @implementation SACompre ...
分类:
Web程序 时间:
2016-04-07 15:57:25
阅读次数:
188
https://github.com/mspnp/azure-guidance https://github.com/mspnp/performance-optimization https://github.com/mspnp/data-pipeline Cloud Design Patterns ...
分类:
移动开发 时间:
2016-04-05 00:04:01
阅读次数:
195
什么是PIMPL(pointer to implementation) ? see: http://stackoverflow.com/questions/8972588/is-the-pimpl-idiom-really-used-in-practice https://msdn.microsof ...
分类:
编程语言 时间:
2016-04-03 23:28:29
阅读次数:
252
在 Swift 中没有了 main.m,@UIApplicationMain 是程序入口 在 Swift 中只有 .swift 文件,没有 .h/.m 文件的区分 在 Swift 中,一个类就是用一对 {} 括起的,没有 @implementation 和 @end 每个语句的末尾没有分号,在其他语 ...
分类:
编程语言 时间:
2016-04-03 14:28:54
阅读次数:
121
I was using IronPython to execute python code inside my C# implementation lately, and I encountered this error when trying to use xmlrpclib: It was re ...
分类:
编程语言 时间:
2016-04-03 13:03:34
阅读次数:
635