Java接口 == Objective-C协议

程序猿的开心一刻###

蔺相如,司马相如;魏无忌,长孙无忌。下列哪一组对应关系与此类似?
a,PHP,Python;b,JSP,servlet;c,java,java script ;d,C,C++

请在评论区输入答案,接下来进入正题


Java接口#

参考文章:Java回调机制趣解

接口是什么:#####
  • Java不支持多重继承,但可以实现多个接口。
  • 接口定义了某一批类所要遵守的规范,只规定这些类里必须提供某些方法。
  • 接口并不是类,编写接口的方式和类很相似,但是它们属于不同的概念。
  • 类描述对象的属性和方法,接口则包含类要实现的方法。
  • 接口可以多继承
接口的作用:#####
  • 扩展性: 如果业务逻辑发生变化需要新增类的方法,就可以在不改变原来已经写好的代码基础上新增一个类来实现接口中定义的函数来实现。
  • 规范性:告诉开发人员你需要实现哪些业务,并可以将命名规范限制住。
  • 安全性:接口是实现软件松耦合的重要手段,它描叙了系统对外的所有服务,而不涉及任何具体的实现细节。

接口实例一:回调传值

接口文件代码:

public interface Listener {
    void send(String s);
}

Info.java文件代码

public class Info {
    public Listener mListener;

    public Info(Listener mListener){
        this.mListener = mListener;
    }

    public void sends(){
        mListener.send("haha");
    }
}

要实现接口里的方法的MainActivity.java文件代码

public class MainActivity extends AppCompatActivity implements Listener{
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        Info info = new Info(this);
        info.sends();
    }
    @Override
    public void send(String s) {
        System.out.println(s);
    }
}

输出结果####

1.png

思考:Java中接口和抽象类的区别?





Objective-C协议#

协议就是定义一套方法,遵守协议的类要去实现协议里的方法。

iOS实例一 :控制器之间逆向传值###

控制器一.m文件代码:

#import "ViewController.h"
#import "SecondViewController.h"
@interface ViewController ()<MyProtocol>
@property(nonatomic,strong)UITextView* textView1;
@end

@implementation ViewController

//此方法只加载一次,类中成员对象和变量的初始化都会放在这个方法中
- (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor = [UIColor blueColor];
    
    _textView1 = [[UITextView alloc] initWithFrame:CGRectMake(0, 100, 320, 30)];
    _textView1.font = [UIFont systemFontOfSize:15];
    _textView1.textColor = [UIColor whiteColor];
    _textView1.backgroundColor = [UIColor blackColor];
    [self.view addSubview:_textView1];
    
    UIButton *button1 = [UIButton buttonWithType:UIButtonTypeCustom];
    button1.frame = CGRectMake(0, 50, 320, 30);
    button1.titleLabel.font = [UIFont systemFontOfSize:17];
    [button1 setTitle:@"点击按钮,去显示控制器二" forState:UIControlStateNormal];
    button1.backgroundColor = [UIColor blackColor];
    [button1 addTarget:self action:@selector(click) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:button1];
}

-(void)showMessage:(NSString *)str{
    _textView1.text = str;
}

-(void)click{
    SecondViewController *vc = [[SecondViewController alloc] init];
    vc.delegate = self;
    [self presentViewController:vc animated:YES completion:nil];
}

@end

控制器二.h文件代码

#import <UIKit/UIKit.h>
//定义协议
@protocol MyProtocol <NSObject>
//必须实现
@required
-(void)showMessage:(NSString*)str;
//可选择实现
@optional
-(void)showtext:(NSString*)str;

@end

@interface SecondViewController : UIViewController

@property(nonatomic,weak) id<MyProtocol> delegate;

@end

控制器二.m文件代码

#import "SecondViewController.h"

@interface SecondViewController ()
@property(nonatomic,strong)UITextField *textField1;
@end

@implementation SecondViewController

//此方法只加载一次,类中成员对象和变量的初始化都会放在这个方法中
- (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor = [UIColor greenColor];

    _textField1 = [[UITextField alloc] initWithFrame:CGRectMake(0, 100, 320, 30)];
    _textField1.font = [UIFont systemFontOfSize:15];
    _textField1.textColor = [UIColor whiteColor];
    _textField1.backgroundColor = [UIColor blackColor];
    [self.view addSubview:_textField1];
    
    UIButton *button1 = [UIButton buttonWithType:UIButtonTypeCustom];
    button1.frame = CGRectMake(0, 50, 320, 30);
    button1.titleLabel.font = [UIFont systemFontOfSize:17];
    [button1 setTitle:@"点击按钮,去显示控制器一" forState:UIControlStateNormal];
    button1.backgroundColor = [UIColor blackColor];
    [button1 addTarget:self action:@selector(click) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:button1];
}

-(void)click{
    [_delegate showMessage:_textField1.text];
    
    [self dismissViewControllerAnimated:YES completion:nil];
}

@end

效果演示###

未命名.gif

iOS实例二 :View让Controller帮它实现跳转###

FirstView.h文件代码

#import <UIKit/UIKit.h>
//定义协议
@protocol FirstViewDelegate <NSObject>
//必须实现
@required
-(void)jumpViewController;
//可选择实现
@optional
-(void)showtext:(NSString*)str;
@end

@interface FirstView : UIView
@property(nonatomic,weak) id<FirstViewDelegate> delegate;
@end

FirstView.m文件代码

#import "FirstView.h"
@implementation FirstView
-(id)initWithFrame:(CGRect)frame{
    if(self = [super initWithFrame:frame]){
        UIButton *button1 = [UIButton buttonWithType:UIButtonTypeCustom];
        button1.frame = CGRectMake(0, 50, 320, 30);
        button1.titleLabel.font = [UIFont systemFontOfSize:17];
        [button1 setTitle:@"点击按钮,去显示控制器二" forState:UIControlStateNormal];
        button1.backgroundColor = [UIColor blackColor];
        [button1 addTarget:self action:@selector(click) forControlEvents:UIControlEventTouchUpInside];
        [self addSubview:button1];
    }
    return self;
}

-(void)click{
    [_delegate jumpViewController];
}

@end

ViewController.m文件代码

#import "ViewController.h"
#import "FirstView.h"
#import "SecondViewController.h"
@interface ViewController ()<FirstViewDelegate>

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor = [UIColor blueColor];
    FirstView *firstView = [[FirstView alloc] initWithFrame:CGRectMake(0, 0, 320, 568)];
    firstView.delegate = self;
    [self.view addSubview:firstView];
  
}

-(void)jumpViewController{
    SecondViewController *vc = [[SecondViewController alloc] init];
    [self presentViewController:vc animated:YES completion:nil];
}

@end

效果演示###

未命名.gif
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,905评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,140评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,791评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,483评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,476评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,516评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,905评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,560评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,778评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,557评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,635评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,338评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,925评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,898评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,142评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,818评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,347评论 2 342

推荐阅读更多精彩内容