Headfirst design mode Swift version 01

Source: Internet
Author: User

Headfirst design mode This book is very good and ready for one months to finish. The book speaks very clearly.

Design principles:

1. Find out where changes may be needed in your application, separate them, and don't mix with code that doesn't need to change.

2, for the interface programming, but not for the implementation of programming.

The code in the book is written in Java and is now being translated with Swift, with no technical content.

protocol Flybehavior {func fly ()-void}protocol Quackbehavior {func quack ()-Void}classCannotfly:flybehavior {init () {} func Fly () {println ("can't fly")    }}classQuack:quackbehavior {init () {} func Quack () {println ("Quack")    }}classDuck {var flybehavior:flybehavior?        var quackbehavior:quackbehavior? Init () {} func Swim () {} func display () {} func Fly () {Flybehavior? . Fly ()} func Quack () {Quackbehavior?. Quack ()}}classMiniducksimulator:duck {override init () {super.init ()}}let Miniduck=miniducksimulator () println ("................") miniduck.fly () Miniduck.flybehavior=cannotfly () println ("................") miniduck.fly ()

Headfirst design mode Swift version 01

Related Article

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.