Swift API 设计思考题

栏目: Swift · 发布时间: 6年前

内容简介:参考文档:1.说明下面两个方法为什么第一个声明了参数标签 at,第二个方法缺省了。2.下面两种声明方式哪一个是正确的,说明原因。

参考文档: [译] 官方 Swift API 设计规范

1.说明下面两个方法为什么第一个声明了参数标签 at,第二个方法缺省了。

extension List {
  public mutating func remove(at position: Index) -> Element
  public mutating func remove(_ member: Element) -> Element?
}

2.下面两种声明方式哪一个是正确的,说明原因。

func add(_ observer: NSObject, for keyPath: String)
func addObserver(_ observer: NSObject, forKeyPath path: String)

3.下面哪一种声明方式更好,说明原因。

x.subViews(havingColor: y)
x.subViews(color: y)

4.下面哪一种声明方式更好,说明原因。

let foreground = Color(red: 32, green: 64, blue: 128)
let foreground = Color(havingRGBValuesRed: 32, green: 64, andBlue: 128)

5.下面两个方法有什么区别?

x.sort()
x.sorted()

6.Protocol 有什么命名规则?

7.什么情况可以声明全局函数?

8.下面声明的方法缺省了第一个参数标签有什么原因?

extension Shape {
  /// Returns `true` iff `other` is within the area of `self`.
  func contains(_ other: Point) -> Bool { ... }
  
  /// Returns `true` iff `other` is entirely within the area of `self`.
  func contains(_ other: Shape) -> Bool { ... }
}

9.下面这样声明会带来什么问题?

extension Box {
  /// Returns the `Int` stored in `self`, if any, and
  /// `nil` otherwise.
  func value() -> Int? { ... }
  
  /// Returns the `String` stored in `self`, if any, and
  /// `nil` otherwise.
  func value() -> String? { ... }
}

10.下面的参数名称哪一个比较好?

func filter(_ predicate: (Element) -> Bool) -> [Generator.Element]

func filter(_ includedInResult: (Element) -> Bool) -> [Generator.Element]

11.下面声明错误的地方在哪里?

extension String {
/// ...description...
    public func compare(_ options: CompareOptions = [], other: String, range: Range? = nil, locale: Locale? = nil
    ) -> Ordering
}

12.下面的函数为什么不需要声明参数标签?

min(number1, number2)
zip(sequence1, sequence2)

13.下面两个初始化方法为什么一个有参数标签,一个没有?

extension UInt32 {
/// Creates an instance having the specified value.
init(_ value: Int16)           
/// Creates an instance having the lowest 32 bits of source.
init(truncating source: UInt64) 
}

14.下面两个方法的声明哪一个比较好?

// a 移动到某个点上
a.move(toX: b, y: c)
a.moveTo(x: b, y: c)

15.下面两个方法的声明哪一个比较好?

extension UIView {
    func addSubview(_ view: UIView)
    func add(subview: UIView)
}

16.下面的声明可能引发什么问题?

struct Array {
  /// Inserts `newElement` at `self.endIndex`.
  public mutating func append(_ newElement: Element)
  
  /// Inserts the contents of `newElements`, in order, at
  /// `self.endIndex`.
  public mutating func append(_ newElements: S)
    where S.Generator.Element == Element
}

17.下面哪一个命名是正确的:

struct Model {
    var sourceURL: URL
    var sourceUrl: URL
}

综合题

什么时候方法、函数的第一个参数缺省参数标签?

作者:没故事的卓同学

链接:https://www.jianshu.com/p/40c7a68aac33


以上所述就是小编给大家介绍的《Swift API 设计思考题》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

六度分隔

六度分隔

邓肯·J·瓦茨 / 陈禹 / 中国人民大学出版社 / 2011-3 / 46.00元

正如副标题所表明的,《六度分隔:一个相互连接的时代的科学》的基本内容是介绍一门正在形成中的新科学——关于网络的一般规律的科学。有这样一门科学吗?它的内容和方法是什么?近年来,这门学科有什么实质性的进展吗?在《六度分隔:一个相互连接的时代的科学》中,作者根据自己的亲身经历娓娓道来,用讲故事的方式,对于这些问题给出了令人信服的回答 除了简要的背景和总结以外,《六度分隔:一个相互连接的时代的科学》......一起来看看 《六度分隔》 这本书的介绍吧!

SHA 加密
SHA 加密

SHA 加密工具

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具