NSSetandNSDictionary, along withNSArrayare the workhorse collection classes of Foundation. Unlikeother standard libraries, implementation details areh...
分类:
移动开发 时间:
2015-07-17 15:56:17
阅读次数:
179
本章是关于ECMAScript面向对象实现的第2篇,第1篇我们讨论的是概论和CEMAScript的比较,如果你还没有读第1篇,在进行本章之前,我强烈建议你先读一下第1篇,因为本篇实在太长了(35页)。
英文原文:http://dmitrysoshnikov.com/ecmascript/chapter-7-2-oop-ecmascript-implementation/
注:由于篇...
分类:
编程语言 时间:
2015-07-17 14:06:29
阅读次数:
171
Cinema.m实现
#import "Cinema.h"
@implementation Cinema
-(id)init
{
//调用父类构造方法
self = [super init];
//判断初始化是否成功
if(self != nil)
{
_name = nil;//用来存储电影的名称
_...
分类:
移动开发 时间:
2015-07-17 09:47:55
阅读次数:
116
http://blog.sunnyxx.com/2014/03/06/ios_exam_0_key/我是前言上次发了个ios程序员6级考试题,还在不断补充中,开个帖子配套写答案和解释。1. 下面的代码分别输出什么?123456789101112@implementation Son : Father...
分类:
移动开发 时间:
2015-07-16 21:20:30
阅读次数:
133
1 #import "RootViewController.h" 2 #import 3 4 @interface RootViewController () 5 @end 6 7 @implementation RootViewController 8 9 - (void)viewDid...
分类:
编程语言 时间:
2015-07-16 11:06:07
阅读次数:
152
A Neural Network in 11 lines of PythonA bare bones neural network implementation to describe the inner workings of backpropagation.Posted by iamtrask ...
分类:
编程语言 时间:
2015-07-15 20:35:33
阅读次数:
207
先来看个效果:
新建视图类,在直接添加代码:
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect
{...
分类:
移动开发 时间:
2015-07-15 19:21:46
阅读次数:
113
lib/usrp/common/fifo_ctrl_excelsior.cpp
/*******************************************************************
* Peek and poke 32 bit implementation
*****************************************...
分类:
其他好文 时间:
2015-07-15 13:21:57
阅读次数:
187
1 @interface ViewController () 2 - (IBAction)customBtnClick; 3 4 @end 5 6 @implementation ViewController 7 8 - (void)viewDidLoad { 9 [super vi...
分类:
其他好文 时间:
2015-07-15 06:33:39
阅读次数:
111
直接上代码://
// AppDelegate.m
//
//#import "AppDelegate.h"
#import "Person.h"
@interface AppDelegate ()@end@implementation AppDelegate- (void)dealloc {
[_window release];
[super dealloc];
}- (BOOL...
分类:
其他好文 时间:
2015-07-14 11:44:28
阅读次数:
119