Usage
@MethodScope
Create a custom scope annotation using @MethodScope
annotation.
@MethodScope
public @interface MyScope {
}
Here is the kotlin code example.
@MethodScope
annotation class MyScope
Attach the custom scope annotation on top of a class.
All of the public methods are the base method for the scoped like the init()
method.
And designate scoping method using @Scoped
annotation with the naming rule what startWith the base method’s name.
@MyScope
public class MyClass {
private String scope;
public void init() { // this is the base method of the scoped methods.
this.scope = “initialized”;
}
@Scoped(MyScope.class)
public void initMyScope() { // this is a scoped method for @MyScope.
this.scope = “initialized by @MyScope”;
}
}
After build the project, MyClass_MyScope
class will be auto-generated.
MyClass_MyScope myClass_myScope = new MyClass_MyScope();
myClass_myScope.init(); // calls init() and initMyScope() methods.
myClass_myScope.initMyScope(); // calls only initMyScope() method.
Multiple Scoping
Here is how to create multiple scoped class.
@MyScope
@HisScope
@YourScope
public class MyClass {
private String scope;
public void init() { // this is the base method of the scoped methods.
this.scope = “initialized”;
}
@Scoped(MyScope.class)
public void initMyScope() { // this is a scoped method for @MyScope.
this.scope = “initialized by @MyScope”;
}
@Scoped(YourScope.class)
public void initMineScopeNotYours() { // this is a scoped method for @YourScope.
this.scope = “initialized by @YourScope”;
}
}
After build the project, MyClass_MyScope
, MyClass_HisScope
, MyClass_YourScope
classes will be auto-generated.
Scoping with a return type and parameters
Methods that have a return type and parameters can be scoped method.
The base method’s return type and parameters are must be the same as the scoped method’s one.
@MyScope
abstract public class MyClass {
private String scope;
public String init(String text) { // this is the base method of the scoped methods.
this.scope += text;
return this.scope;
}
@Scoped(MyScope.class)
public String initMyScope(String text) { // this is a scoped method for @MyScope.
this.scope += text;
return this.scope;
}
Abstract class Scoping
MethodScope supports scopping for the abstract class.
This is more clear because the base method of the scoped methods is being explicitly abstract.
最后
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数初中级Android工程师,想要提升技能,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助。
因此我收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门
如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!
深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门**
如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!