Preface From learning Kotlin, to writing some trial code, to doing some packaging work, to finally writing a project, I have to say that I encountered a lot of problems in the process. Although many of the pitfalls were caused by my own choices, such as using anko layout instead of xml, but overall, the surprises brought by this language are enough for me to ignore the bumps on the road. This article is just to sort out some of my thoughts and surprises along the way. As I learn and use Kotlin, I will revise it over the long term. text 1. With null safety, you no longer have to worry about the server returning null objects A simple example is that String and String? are two different types. String is certain to be non-empty and must have a value; while String? is unknown and may have a value or may be empty. When using the properties and methods of an object, objects of type String can be used directly without any scruples, while objects of type String? require you to make a non-empty judgment first.
The output is:
Even though string2 is a null object, it does not report a null pointer just because I called its properties/methods. All you need to do is add a "?". If this still doesn't reflect the benefits of null safety, then look at the following example:
Imagine that when each level of attributes may be empty, how do we handle it in JAVA? 2. Transformation and intelligent conversion saves effort and worry I have written JAVA code like this
The writing rules in Kotlin are different
The comparison is more obvious after reducing the code
Compared to JAVA's way of writing (Class) before the object, Kotlin adds as Class after the object to achieve the conversion. At least for me personally, after getting used to the smooth writing of as Class, I can no longer tolerate the front-end writing in JAVA. Even with the cast shortcut key, it is still easy to interrupt my writing order and thinking. In fact, Kotlin can be even simpler here:
Because the current context has determined that view is TextView, view in the current code block is no longer a View class, but a TextView class. This is Kotlin's smart conversion. Let's take the example of null safety above. Under normal thinking, since String and String? are different types, is it possible for me to write code like this?
If you write it this way, Kotlin will show you a highlighted warning saying that this is an unnecessary safe call. As for why, it is because you have already written a != null before, so a in this code block is no longer of type A?, but of type A.
Another common scenario for smart conversion is in switch case statements. In Kotlin, it is the when syntax.
The output is as follows:
It can be seen that under the condition that it has been determined to be a String, it was originally an obj object of the Any class, and I can directly use the .length attribute of the String class. In JAVA, we need to do this:
or
The former interrupts the continuity of writing and reading, and the latter... Kotlin is much smarter than that. Even now, when I am writing code, I occasionally get a highlighted warning. Only then do I realize that my writing is redundant and Kotlin has already taken care of it for me. I will not go into details here. 3. When is more powerful than switch Through the above example of smart conversion, we have demonstrated some of the functions of when. But compared with JAVA's switch, Kotlin's when brings me much more surprises than this. For example:
The output is as follows:
Unlike the rigid switch-case statement in JAVA, in when, I can use parameters to match the range from 10 to Int.MAX_VALUE, or to match the set of values 2, 3, 5, 7. Of course, I haven't listed all the features here. The flexibility and simplicity of when makes me very happy when using it (compared with JAVA switch) 4. Container Operators Since I fell in love with RxJava, it is really hard for me to go back to the past, because of the many convenient operators in RxJava. In Kotlin, the container itself has a series of operators, which can implement some logic very concisely. For example:
The above code first creates a range from 0 to container.childCount - 1; then uses the map operator with the code to extract the child to convert this Int collection into a collection of childView; then uses the filter operator to filter the collection and selects all childViews with visibility set to GONE as a new collection; finally, forEach traverses and sets all childViews to VISIBLE. Here is the JAVA code for comparison.
I will not describe in detail the advantages of this chain writing method here. 5. Thread switching, so easy Since RxJava is mentioned above, we have to think of another advantage of RxJava - thread scheduling. There is a library in Kotlin that is tailored for Android development, called anko, which contains a lot of code that can simplify development, including simplifying threads.
The above code is very simple. The code is implemented in an asynchronous thread through the async method. After reading the response to the http request, the uiThread method is used to switch back to the ui thread to display the response on the textView. Putting aside the internal implementation, you no longer need to write a lot of invalid code for a simple asynchronous task. According to convention, it seems that JAVA code should be posted here for comparison, but please forgive me for not wanting to refresh the screen (ah ha ha) 6. A keyword to implement a singleton That’s right, a singleton can be implemented with just one keyword:
Goodbye, singleton pattern 7. Automatic getter, setter and class concise declaration There are the following classes in JAVA
Person person = new Person("张三"); It can be seen that under the standard writing method, one attribute corresponds to two methods, get and set, and the amount of code that needs to be written manually is quite large. Of course, there are shortcut keys to help us generate these codes, but considering various complex situations, it is not always perfect. And this is what Kotlin does:
You can also add default values:
Here is a more complex data class in my project:
At first glance, there is no redundant code. This is one of the reasons why I think Kotlin code is easier to write cleanly than JAVA code. 8. DSL-style programming Speaking of DSL, the one that Android developers are most exposed to is probably Gradle. For example:
This is a Groovy DSL that declares compilation configuration. So what does it feel like to use a DSL in your Android project code?
That's right, the code above is used to build the viewPager + fragments + tabBar of this main interface. Start with tabPages, set the background color, dividing line and other properties; then use tabFrament to add fragment + tabButton, and the tabImage method only adds tabButton. The code you see is all for configuration, and the specific implementation is encapsulated. The anko library mentioned earlier can actually be used to replace XML for layout:
Compared to using JAVA code for layout, this DSL approach is also about configuration, encapsulating the layout implementation code behind, which is very similar to XML layout. There will be a special article to introduce DSL and anko layout in the future, so I will stop here. 9. Delegation/Proxy, SharedPreference is no longer a hassle Through the delegation function in Kotlin, we can easily write a SharedPreference proxy class
Let's skip the principle for now and see how to use it
Repeatedly launch the app output results:
When the app is started for the first time, the userId retrieved from SharedPreference is empty, but it is not empty afterwards. Therefore, the code userId = "default userId" successfully modifies the value in SharedPreference. That is to say, with the help of this Preference proxy, SharedPreference access operations become as simple as ordinary object calls and assignments. 10. Extensions, say goodbye to tools A long time ago, someone told me that the tool class itself is something that violates the object-oriented concept. But at that time I thought, if you don't let me use the tool class, how can I write some code? It was not until I knew the concept of extension that I suddenly understood.
The above code can be understood as:
Adding methods to ImageView through extension is less invasive than writing a CustomImageView by inheriting ImageView and then adding methods. There is no need to write CustomImageView in the code, nor to hard-code the package name in the XML layout, which will cause trouble in transplantation. This can certainly be done with a tool class, such as ImageUtil.displayUrl(imageView, url), but the tool class does not read as naturally and smoothly as the extended method. Extensions are a major advantage of Kotlin over JAVA |
<<: AI is taking programmers' jobs: AI may replace programmers in 2040
>>: 5G is not here yet, but WeChat is already struggling
[[415143]] Preface JAVA programs should not have ...
“Behind every successful case, there is a methodo...
Baidu Aicai’s display model brings brand benefits...
"spring breeze Walking towards the fields Fe...
Short videos have become the hottest track in rec...
If there is anything in common between business a...
Previously we learned the 6 basic elements necess...
We all know that whether it is bidding or informa...
Search promotion is a pay-per-performance online ...
On September 14, 2021, Alibaba Community E-Commer...
Who is the biggest victim of cheating in the mobi...
As a companion, silicone dolls can accompany you ...
Chinese Valentine's Day is coming, how do we ...
Preface In Part 1 we explored the basics of the l...
If you want to get more traffic when selling good...