Swift中共有74個內建函數

來源:互聯網
上載者:User

標籤:

Swift中共有74個內建函數,但是在Swift官方文檔(“The Swift Programming Language”)中只記錄了7中。剩下的67個都沒有記錄。 本文將列舉Swift所有的內建函數。本文中提到的所謂的內建函數是指那些在Swift中不需要匯入任何模組(如Foundation等)或者引用任何類就可以使用的函數。  abs(signedNumber): 返回給定的有符號數位絕對值。很簡單,但是沒有在文檔中記錄。
  1. abs(-1) == 1 
  2. abs(-42) == 42 
  3. abs(42) == 42 
  contains(sequence, element): 如果給定的序列(如數組)包含特定的元素,則返回true。
  1. var languages = ["Swift", "Objective-C"] 
  2. contains(languages, "Swift") == true 
  3. contains(languages, "Java") == false 
  4. contains([29, 85, 42, 96, 75], 42) == true 
  dropFirst(sequence): 返回一個去掉第一個元素的新序列(如數組)。
  1. var languages = ["Swift", "Objective-C"] 
  2. var oldLanguages = dropFirst(languages) 
  3. equal(oldLanguages, ["Objective-C"]) == true 
  dropLast(sequence): 返回一個的新序列(如數組),該序列去掉作為參數傳遞給函數的最後一個元素。
  1. var languages = ["Swift", "Objective-C"] 
  2. var newLanguages = dropLast(languages) 
  3. equal(newLanguages, ["Swift"]) == true 
  dump(object): 一個對象的內容轉儲到標準輸出。
  1. var languages = ["Swift", "Objective-C"] 
  2. dump(languages) 
  3. // Prints: 
  4. // ? 2 elements 
  5. // - [0]: Swift 
  6. // - [1]: Objective-C 
  equal(sequence1, sequence2): 如果序列1和序列2包含相同的元素,則返回true。
  1. var languages = ["Swift", "Objective-C"] 
  2. equal(languages, ["Swift", "Objective-C"]) == true 
  3. var oldLanguages = dropFirst(languages) 
  4. equal(oldLanguages, ["Objective-C"]) == true 
  filter(sequence, includeElementClosure): 返回序列的一個元素,這個元素滿足includeElementClosure所指定的條件。
  1. for i in filter(1...100, { $0 % 10 == 0 }) 
  2.     // 10, 20, 30, ... 
  3.     println(i) 
  4.     assert(contains([10, 20, 30, 40, 50, 60, 70, 80, 90, 100], i)) 
  find(sequence, element): 再給定的序列中返回一個指定的索引,如果在序列中沒有找到這個元素就返回nil。
  1. var languages = ["Swift", "Objective-C"] 
  2. find(languages, "Objective-C") == 1 
  3. find(languages, "Java") == nil 
  4. find([29, 85, 42, 96, 75], 42) == 2 
  indices(sequence): 在指定的序列中返回元素的索引(零索引)。
  1. equal(indices([29, 85, 42]), [0, 1, 2]) 
  2. for i in indices([29, 85, 42]) { 
  3.     // 0, 1, 2 
  4.     println(i) 
  join(separator, sequence): 返回一個由給定的分隔字元分離出來的序列的元素。
  1. join(":", ["A", "B", "C"]) == "A:B:C" 
  2. var languages = ["Swift", "Objective-C"] 
  3. join("/", languages) == "Swift/Objective-C" 
  map(sequence, transformClosure): 如果transformClosure適用於所給序列中所有的元素,則返回一個新序列。
  1. equal(map(1...3, { $0 * 5 }), [5, 10, 15]) 
  2. for i in map(1...10, { $0 * 10 }) { 
  3.     // 10, 20, 30, ... 
  4.     println(i) 
  5.     assert(contains([10, 20, 30, 40, 50, 60, 70, 80, 90, 100], i)) 
  max(comparable1, comparable2, etc.): 返回函數所給參數中的最大值。
  1. max(0, 1) == 1 
  2. max(8, 2, 3) == 8 
  maxElement(sequence): 返回所給序列的同類元素中的最大元素。
  1. maxElement(1...10) == 10 
  2. var languages = ["Swift", "Objective-C"] 
  3. maxElement(languages) == "Swift" 
  minElements(sequence): 返回所給序列的同類元素中的最小元素。
  1. minElement(1...10) == 1 
  2. var languages = ["Swift", "Objective-C"] 
  3. minElement(languages) == "Objective-C" 
  reduce(sequence, initial, combineClosure): 從第一個初始值開始對其進行combineClosure操作,遞迴式地將序列中的元素合并為一個元素。
  1. var languages = ["Swift", "Objective-C"] 
  2. reduce(languages, "", { $0 + $1 }) == "SwiftObjective-C" 
  3. reduce([10, 20, 5], 1, { $0 * $1 }) == 1000 
  reverse(sequence): 返回所給序列的倒序。
  1. equal(reverse([1, 2, 3]), [3, 2, 1]) 
  2. for i in reverse([1, 2, 3]) { 
  3.     // 3, 2, 1 
  4.     println(i) 
  startsWith(sequence1, sequence2):如果序列1和序列2的起始元素相等,則返回true。
  1. startsWith("foobar", "foo") == true 
  2. startsWith(10..100, 10..15) == true 
  3. var languages = ["Swift", "Objective-C"] 
  4. startsWith(languages, ["Swift"]) == true 
 如下列表為Swift中的74個內建函數。上文所描述的函數是我認為在日常開發中比較有用處的。當然我可能遺漏了一些常用函數。歡迎大家在評論中討論,並且請用一個簡短的程式碼片段來展示如何使用該函數。
  1. abs(...) 
  2. advance(...) 
  3. alignof(...) 
  4. alignofValue(...) 
  5. assert(...) 
  6. bridgeFromObjectiveC(...) 
  7. bridgeFromObjectiveCUnconditional(...) 
  8. bridgeToObjectiveC(...) 
  9. bridgeToObjectiveCUnconditional(...) 
  10. c_malloc_size(...) 
  11. c_memcpy(...) 
  12. c_putchar(...) 
  13. contains(...) 
  14. count(...) 
  15. countElements(...) 
  16. countLeadingZeros(...) 
  17. debugPrint(...) 
  18. debugPrintln(...) 
  19. distance(...) 
  20. dropFirst(...) 
  21. dropLast(...) 
  22. dump(...) 
  23. encodeBitsAsWords(...) 
  24. enumerate(...) 
  25. equal(...) 
  26. filter(...) 
  27. find(...) 
  28. getBridgedObjectiveCType(...) 
  29. getVaList(...) 
  30. indices(...) 
  31. insertionSort(...) 
  32. isBridgedToObjectiveC(...) 
  33. isBridgedVerbatimToObjectiveC(...) 
  34. isUniquelyReferenced(...) 
  35. join(...) 
  36. lexicographicalCompare(...) 
  37. map(...) 
  38. max(...) 
  39. maxElement(...) 
  40. min(...) 
  41. minElement(...) 
  42. numericCast(...) 
  43. partition(...) 
  44. posix_read(...) 
  45. posix_write(...) 
  46. print(...) 
  47. println(...) 
  48. quickSort(...) 
  49. reduce(...) 
  50. reflect(...) 
  51. reinterpretCast(...) 
  52. reverse(...) 
  53. roundUpToAlignment(...) 
  54. sizeof(...) 
  55. sizeofValue(...) 
  56. sort(...) 
  57. split(...) 
  58. startsWith(...) 
  59. strideof(...) 
  60. strideofValue(...) 
  61. swap(...) 
  62. swift_MagicMirrorData_summaryImpl(...) 
  63. swift_bufferAllocate(...) 
  64. swift_keepAlive(...) 
  65. toString(...) 
  66. transcode(...) 
  67. underestimateCount(...) 
  68. unsafeReflect(...) 
  69. withExtendedLifetime(...) 
  70. withObjectAtPlusZero(...) 
  71. withUnsafePointer(...) 
  72. withUnsafePointerToObject(...) 
  73. withUnsafePointers(...) 
  74. withVaList(...) 
 

歡迎討論,敬請勘誤!

Swift中共有74個內建函數

相關文章

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.