Kotlin 初学者打牢基础的重要性
Posted 帅次
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Kotlin 初学者打牢基础的重要性相关的知识,希望对你有一定的参考价值。
为什么要打牢基础,再实战?
下面咱先看一个简单的页面。
就这么一个简单的页面,布局就不看了,今天的重点是Kotlin。上代码
Kotlin
class MainActivity : AppCompatActivity()
private lateinit var btnAccountRegistered: Button
private lateinit var btnAccountLogin: Button
//public
lateinit var loginEtInputAccount: EditText
lateinit var loginEtInputPassword: EditText
//变量
var acount = "";//必须赋值
var password = "";
override fun onCreate(savedInstanceState: Bundle?)
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
//关联控件
btnAccountRegistered = findViewById(R.id.login_btn_account_registered)
btnAccountLogin = findViewById(R.id.login_btn_account_login);
loginEtInputAccount = findViewById(R.id.login_et_input_account);
loginEtInputPassword = findViewById(R.id.login_et_input_password);
//lambda表达式(java1.8也有)
btnAccountRegistered.setOnClickListener
//赋值
acount = loginEtInputAccount.text.toString()
password = loginEtInputPassword.text.toString()
//点击事件操作
if (isVerificationPassed(acount, password))
Toast.makeText(this, R.string.login_registered_success, Toast.LENGTH_SHORT).show()
btnAccountLogin.setOnClickListener
//赋值
acount = loginEtInputAccount.text.toString()
password = loginEtInputPassword.text.toString()
//点击事件操作
if (isVerificationPassed(acount, password))
Toast.makeText(this, R.string.login_login_success, Toast.LENGTH_SHORT).show()
fun isVerificationPassed(account: String, password: String): Boolean
if (account.length < 4 || account.length > 20)
Toast.makeText(this, R.string.login_account_limit, Toast.LENGTH_SHORT).show()
return false
else if (password.length < 4 || password.length > 20)
Toast.makeText(this, R.string.login_password_limit, Toast.LENGTH_SHORT).show()
return false
else
return true;
代码不多,4个控件,2个变量,两个函数,但是涉及内容不少。
反编译
咱们对Kotlin编译后的字节码进行反编译,从而看到java版本的代码。两种方法:
-
按Shift(2次)>输入Show Kotlin Bytecode > Decompile,点击即可。
-
选中Tools - > Kotlin - > Show Kotlin Bytecode -> Decompile,点击即可
Java
控件
Kotlin
class MainActivity : AppCompatActivity()
private lateinit var btnAccountRegistered: Button
private lateinit var btnAccountLogin: Button
//public
lateinit var loginEtInputAccount :EditText
lateinit var loginEtInputPassword :EditText
Java
public final class MainActivity extends AppCompatActivity
private Button btnAccountRegistered;
private Button btnAccountLogin;
public EditText loginEtInputAccount;
public EditText loginEtInputPassword;
@NotNull
public final EditText getLoginEtInputAccount()
EditText var10000 = this.loginEtInputAccount;
if (var10000 == null)
Intrinsics.throwUninitializedPropertyAccessException("loginEtInputAccount");
return var10000;
public final void setLoginEtInputAccount(@NotNull EditText var1)
Intrinsics.checkNotNullParameter(var1, "<set-?>");
this.loginEtInputAccount = var1;
//loginEtInputPassword的set/get方法省略
定义类,:
后面跟的是继承的类。
作为public定义的属性,自动生成了set/get方法,也就是说其他地方可以直接调用。还有在使用的时候会进行空判断(Intrinsics.checkNotNullParameter(...)
) 。
变量
Kotlin
//变量
var acount = "";
var password = "" ;
Java
@NotNull
private String acount = "";
@NotNull
private String password = "";
@NotNull
public final String getAcount()
return this.acount;
public final void setAcount(@NotNull String var1)
Intrinsics.checkNotNullParameter(var1, "<set-?>");
this.acount = var1;
//password的set/get方法省略
定义的属性没有设置数据类型,自动帮忙转换?这么只能,然后非空。如果想要为null要怎么设置?反编译后加注解使用是做非空判断自动生成set/get方法。
关联控件和点击事件
Kotlin
override fun onCreate(savedInstanceState: Bundle?)
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
//关联控件
btnAccountRegistered = findViewById(R.id.login_btn_account_registered)
btnAccountLogin = findViewById(R.id.login_btn_account_login);
loginEtInputAccount = findViewById(R.id.login_et_input_account);
loginEtInputPassword = findViewById(R.id.login_et_input_password);
//lambda表达式(java1.8也有)
btnAccountRegistered.setOnClickListener
//赋值
acount = loginEtInputAccount.text.toString()
password = loginEtInputPassword.text.toString()
//点击事件操作
if (isVerificationPassed(acount, password))
Toast.makeText(this, R.string.login_registered_success, Toast.LENGTH_SHORT).show()
btnAccountLogin.setOnClickListener
//赋值
acount = loginEtInputAccount.text.toString()
password = loginEtInputPassword.text.toString()
//点击事件操作
if (isVerificationPassed(acount, password))
Toast.makeText(this, R.string.login_login_success, Toast.LENGTH_SHORT).show()
//其他省略
Java
protected void onCreate(@Nullable Bundle savedInstanceState)
super.onCreate(savedInstanceState);
this.setContentView(1300083);
View var10001 = this.findViewById(1000217);
Intrinsics.checkNotNullExpressionValue(var10001, "findViewById(R.id.login_btn_account_registered)");
this.btnAccountRegistered = (Button)var10001;
var10001 = this.findViewById(1000191);
Intrinsics.checkNotNullExpressionValue(var10001, "findViewById(R.id.login_btn_account_login)");
this.btnAccountLogin = (Button)var10001;
var10001 = this.findViewById(1000176);
Intrinsics.checkNotNullExpressionValue(var10001, "findViewById(R.id.login_et_input_account)");
this.loginEtInputAccount = (EditText)var10001;
var10001 = this.findViewById(1000322);
Intrinsics.checkNotNullExpressionValue(var10001, "findViewById(R.id.login_et_input_password)");
this.loginEtInputPassword = (EditText)var10001;
Button var10000 = this.btnAccountRegistered;
if (var10000 == null)
Intrinsics.throwUninitializedPropertyAccessException("btnAccountRegistered");
var10000.setOnClickListener((OnClickListener)(new OnClickListener()
public final void onClick(View it)
MainActivity.this.setAcount(MainActivity.this.getLoginEtInputAccount().getText().toString());
MainActivity.this.setPassword(MainActivity.this.getLoginEtInputPassword().getText().toString());
if (MainActivity.this.isVerificationPassed(MainActivity.this.getAcount(), MainActivity.this.getPassword()))
Toast.makeText((Context)MainActivity.this, 1900092, 0).show();
));
var10000 = this.btnAccountLogin;
if (var10000 == null)
Intrinsics.throwUninitializedPropertyAccessException("btnAccountLogin");
var10000.setOnClickListener((OnClickListener)(new OnClickListener()
public final void onClick(View it)
MainActivity.this.setAcount(MainActivity.this.getLoginEtInputAccount().getText().toString());
MainActivity.this.setPassword(MainActivity.this.getLoginEtInputPassword().getText().toString());
if (MainActivity.this.isVerificationPassed(MainActivity.this.getAcount(), MainActivity.this.getPassword()))
Toast.makeText((Context)MainActivity.this, 1900091, 0).show();
));
onCreate方法从Kotlin到Java这个比较熟悉没说的。fun
就是定义方法的。后面慢慢聊。
然后对比下来,你发现反编译后的关联统建被一个View var10001全搞定了。发现这个比较有意思。包括后面Button的点击事件。
函数
Kotlin
fun isVerificationPassed(account: String, password: String): Boolean
if (account.length < 4 || account.length > 20)
Toast.makeText(this, R.string.login_account_limit, Toast.LENGTH_SHORT).show()
return false
else if (password.length < 4 || password.length > 20)
Toast.makeText(this, R.string.login_password_limit, Toast.LENGTH_SHORT).show()
return false
else
return true;
Java
public final boolean isVerificationPassed(@NotNull String account, @NotNull String password)
Intrinsics.checkNotNullParameter(account, "account");
Intrinsics.checkNotNullParameter(password, "password");
if (account.length() >= 4 && account.length() <= 20)
if (password.length() >= 4 && password.length() <= 20)
return true;
else
Toast.makeText((Context)this, 1900080, 0).show();
return false;
else
Toast.makeText((Context)this, 1900105, 0).show();
return false;
对比下来其实不是很难,但是代码习惯要变,要适应Kotlin的代码语法习惯,包括数据类型写在参数名(属性名)的后面、不用 ;
等。如果没有梳理基础语法直接上手,可能会有点烦躁。
一个简单的页面涉及的内容也很多常量、变量、函数、类与对象、注逻、控制语句等等,也不知道如何写起,都写的话比较乱而且涵盖不全。
言归正传,还是先在新手区练习练习基础语法然后再去野区玩。如:
后面的文章可能就先从基础语法练习搞起了。
以上是关于Kotlin 初学者打牢基础的重要性的主要内容,如果未能解决你的问题,请参考以下文章
Python快速编程入门,打牢基础必须知道的11个知识点 !
字节内部超全Kotlin学习笔记,快速上手 Kotlin 开发,基础 + 实战 + 源码,手把手带你吃透 Kotlin 语法与协程。