06. Kotlin 空安全和异常机制
null 安全
为了消除 NullPointerException,Kotlin 的变量类型不允许赋值 null。如果您需要一个可以为空的变量,可以通过添加 ?在其类型的末端表示为可空类型。
1 | var neverNull: String = "This can't be null" |
为了消除 NullPointerException,Kotlin 的变量类型不允许赋值 null。如果您需要一个可以为空的变量,可以通过添加 ?在其类型的末端表示为可空类型。
1 | var neverNull: String = "This can't be null" |
This style guide is different from other you may see, because the focus is
centered on readability for print and the web. We created this style guide to
keep the code in our tutorials consistent.
Our overarching goals are conciseness, readability and simplicity.
You should also check out out Swift
and Objective-C
style guides too.
This style-guide is somewhat of a mash-up between the existing Java language
style guides, and a tutorial-readability focused Swift style-guide. The language
guidance is drawn from the
Android contributors style guide
and the
Google Java Style Guide.
Alterations to support additional readability in tutorials were inspired by the
raywenderlich.com Swift style guide.
It is possible to get Android Studio to adhere to these style guidelines, via
a rather complex sequence of menus. To make it easier, we’ve provided a coding
style that can be imported into Android Studio.
First, clone this repository and run install.sh
.
Then, open Android Studio. To set this codestyle as the default, select
File > Other Settings > Default Settings…:
In Editor > Code Style, choose the Scheme to be raywenderlich.com:
From now on, projects you create should follow the correct style guidelines.
On the whole, naming should follow Java standards.
Package names are all lower-case, multiple words concatenated together,
without
hypens or underscores:
BAD:
1 | com.RayWenderlich.funky_widget |
GOOD:
1 | com.raywenderlich.funkywidget |
Written in UpperCamelCase. For example RadialSlider
.
Written in lowerCamelCase. For example setValue
.
Written in lowerCamelCase.
Static fields should be written in uppercase, with an underscore separating
words:
1 | public static final int THE_ANSWER = 42; |
As distasteful as it is, field naming should follow the Android source code
naming conventions:
m
.s
.For example:
1 | public class MyClass { |
Note: You can set Android Studio to follow this convention. See this SO
link for details http://stackoverflow.com/questions/22732722/intellij-android-studio-member-variable-prefix
Written in lowerCamelCase.
Single character values to be avoided except for temporary looping variables.
In code, acronyms should be treated as words. For example:
BAD:
1 | XMLHTTPRequest |
GOOD:
1 | XmlHttpRequest |
Access level modifiers should be explicitly defined for classes, methods and
member variables.
Prefer single declaration per line.
BAD:
1 | String username, twitterHandle; |
GOOD:
1 | String username; |
Exactly one class per source file, although inner classes are encouraged where
scoping appropriate.
Enum classes should be avoided where possible, due to a large memory overhead.
Static constants are preferred. See http://developer.android.com/training/articles/memory.html#Overhead
for further details.
Enum classes without methods may be formatted without line-breaks, as follows:
1 | private enum CompassDirection { EAST, NORTH, WEST, SOUTH } |
Spacing is especially important in raywenderlich.com code, as code needs to be
easily readable as part of the tutorial. Java does not lend itself well to this.
Indentation is using spaces - never tabs.
Indentation for blocks uses 2 spaces (not the default 4):
BAD:
1 | for (int i = 0; i < 10; i++) { |
GOOD:
1 | for (int i = 0; i < 10; i++) { |
Indentation for line wraps should use 4 spaces (not the default 8):
BAD:
1 | CoolUiWidget widget = |
GOOD:
1 | CoolUiWidget widget = |
Lines should be no longer than 100 characters long.
There should be exactly one blank line between methods to aid in visual clarity
and organization. Whitespace within methods should separate functionality, but
having too many sections in a method often means you should refactor into
several methods.
For external access to fields in classes, getters and setters are preferred to
direct access of the fields. Fields should rarely be public
.
However, it is encouraged to use the field directly when accessing internally
(i.e. from inside the class). This is a performance optimization recommended
by Google: http://developer.android.com/training/articles/perf-tips.html#GettersSetters
Only trailing closing-braces are awarded their own line. All others appear the
same line as preceding code:
BAD:
1 | class MyClass |
GOOD:
1 | class MyClass { |
Conditional statements are always required to be enclosed with braces,
irrespective of the number of lines required.
BAD:
1 | if (someTest) |
GOOD:
1 | if (someTest) { |
Switch statements fall-through by default, but this can be unintuitive. If you
require this behavior, comment it.
Alway include the default
case.
BAD:
1 | switch (anInput) { |
GOOD:
1 | switch (anInput) { |
Standard annotations should be used - in particular @Override
. This should
appear the line before the function declaration.
BAD:
1 | protected void onCreate(Bundle savedInstanceState) { |
GOOD:
1 | @Override |
Since Android uses XML extensively in addition to Java, we have some rules
specific to XML.
View-based XML files should be prefixed with the type of view that they
represent.
BAD:
login.xml
main_screen.xml
rounded_edges_button.xml
GOOD:
activity_login.xml
fragment_main_screen.xml
button_rounded_edges.xml
Similarly to Java, indentation should be two characters.
Wherever possible XML resource files should be used:
res/values/strings.xml
res/values/styles.xml
res/color/colors.xml
res/anim/
res/drawable
Where appropriate, XML attributes should appear in the following order:
id
attributelayout_*
attributesgravity
or textColor
text
or src
Within each of these groups, the attributes should be ordered alphabetically.
Use US English spelling.
BAD:
1 | String colour = "red"; |
GOOD:
1 | String color = "red"; |
The following copyright statement should be included at the top of every source
file:
/*
* Copyright (c) 2017 Razeware LLC
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* Notwithstanding the foregoing, you may not use, copy, modify, merge, publish,
* distribute, sublicense, create a derivative work, and/or sell copies of the
* Software in any work that is designed, intended, or marketed for pedagogical or
* instructional purposes related to programming, coding, application development,
* or information technology. Permission for such use, copying, modification,
* merger, publication, distribution, sublicensing, creation of derivative works,
* or sale is expressly withheld.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
Smiley faces are a very prominent style feature of the raywenderlich.com site!
It is very important to have the correct smile signifying the immense amount of
happiness and excitement for the coding topic. The closing square bracket ] is
used because it represents the largest smile able to be captured using ASCII
art. A closing parenthesis ) creates a half-hearted smile, and thus is not
preferred.
Bad:
:)
Good:
:]
This style guide is a collaborative effort from the most stylish
raywenderlich.com team members:
https://github.com/kodecocodes/java-style-guide/blob/master/README.markdown
此样式指南与您可能看到的其他样式指南不同,因为重点是以印刷和网络的可读性为中心。我们创建了这个风格指南,以使我们教程中的代码保持一致。
Our overarching goals are conciseness, readability and simplicity.
You should also check out out Swift
and Objective-C
style guides too.
This style-guide is somewhat of a mash-up between the existing Java language
style guides, and a tutorial-readability focused Swift style-guide. The language
guidance is drawn from the
Android contributors style guide
and the
Google Java Style Guide.
Alterations to support additional readability in tutorials were inspired by the
raywenderlich.com Swift style guide.
函数是能完成某项特定任务的可复用代码块,是编程非常重要的一部分。事实上,程序基本上就是一系列函数的组合,用来完成较复杂的任务。
Kotlin 中的函数很灵活,它可以独立于类或接口之外存在,不属于任何的类,即顶层函数(top-level function),也就是全局函数,之前接触的 main 函数就属于顶层函数;也可以存在于别的函数中,即局部函数;还可以存在于类或接口之中,即成员函数。
1 | fun 函数名(参数列表) : 返回值类型 { |
在参数列表后 “: 返回值类型” 指明函数的返回值类型,如果函数没有需要返回的数据,则 “: 返回值类型” 可以省略。对应地,如果函数有返回数据,就需要在函数体最后使用 return 语句将计算的数据返回。
高阶函数是以另一个函数作为参数 and/or 返回函数的函数。
1 | fun calculate(x: Int, y: Int, operation: (Int, Int) -> Int): Int { // 1 |