Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

工厂模式 #487

Open
Pcjmy opened this issue Mar 12, 2023 · 1 comment
Open

工厂模式 #487

Pcjmy opened this issue Mar 12, 2023 · 1 comment

Comments

@Pcjmy
Copy link
Contributor

Pcjmy commented Mar 12, 2023

No description provided.

@topulikeweb
Copy link

// 工厂类
class shapeFactory {
  chooseShape (type) {
    if (type === 'circle') {
      return new Circle()
    }
    if (type === 'rectangle'){
      // ...
    }
  }
}

// 圆形类
class Circle {
  draw () {
    console.log('the shape is circle')
  }
}

const factory = new shapeFactory()
factory.chooseShape('circle')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants