Skip to content

Commit

Permalink
Update Scala列表和集.md
Browse files Browse the repository at this point in the history
  • Loading branch information
heibaiying authored Nov 21, 2020
1 parent 2b5bd14 commit 6795c2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions notes/Scala列表和集.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ object ScalaApp extends App {
// 4.tail 和 head 可以结合使用
list.tail.head

// 5.返回列表中的最后一个元素 与 head 相反
// 5.返回列表中除了最后一个元素之外的其他元素;与 tail 相反 这里输出 List(hadoop, spark)
list.init

// 6.返回列表中除了最后一个元素之外的其他元素tail 相反 这里输出 List(hadoop, spark)
// 6.返回列表中的最后一个元素head 相反
list.last

// 7.使用下标访问元素
Expand Down Expand Up @@ -542,4 +542,4 @@ object ScalaApp extends App {
2. 凯.S.霍斯特曼 . 快学 Scala(第 2 版)[M] . 电子工业出版社 . 2017-7


<div align="center"> <img src="https://gitee.com/heibaiying/BigData-Notes/raw/master/pictures/weixin-desc.png"/> </div>
<div align="center"> <img src="https://gitee.com/heibaiying/BigData-Notes/raw/master/pictures/weixin-desc.png"/> </div>

0 comments on commit 6795c2b

Please sign in to comment.