Learn Scala (3)--array-related operations

Source: Internet
Author: User

Val A = Array (2, 4, 5, 6)

Val result = for (Elem <-a) yield 2 * elem//result = (4,8, 10, 12)

Val result1 = for (Elem <-a If elem% 2 = = 0) Yield 2 * elem//RESULT1 = (4,8,12)

Val result2 = A.filter (_% 2 = = 0). Map (2 * _)//result = (4,8,12)

Val Result3 = A.filter (_% 2 = = 0) Map {2 * _}//result = (4, 8, 12)

Example: Delete a negative number in an array other than the first negative number

  def Removeneg (a:array[int]) = {    true    forif First | | A (i) > 0 ) yield {      iffalse; I    }    for (J <-0 until Indexes.length) A (j) = A (indexes (j))    = a.tobuffer    - indexes.length)    B.toarray  }

Sum

Array/arraybuffer (...). Sum

Maximum Minimum

Array/arraybuffer (...). Max/min

Sort

Do not modify the original version

Val B = Array/arraybuffer (...)

Val bsorted = b.sorted

Val bdescending = B.sortedwith (_>_)

Sort on the original array (cannot be set buffer operation)

Val A = Array ()

Scala.util.Sorting.quichSort (a)

Display the contents of an array or array buffer

A.mkstring ("and")//"1 and 2 and 3"

A.mkstring ("<", ",", ">")//"<1,2,3>"

Learn Scala (3)--array-related operations

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.