


Detailed explanation of JavaScript strategy mode, template mode usage scenarios and implementation code
Strategy Pattern
The strategy pattern refers to defining a series of algorithms and encapsulating them one by one. The purpose is to separate the use of the algorithm from the implementation of the algorithm. To put it bluntly, the writing method that used to require a lot of judgments is now separated from the content of the judgments and turned into small individuals.
Code implementation:
The code scenario is a supermarket promotion, VIP is 50% off, regular customers are 30% off, and ordinary customers are not discounted. Calculate the final amount to be paid.
Without using strategy mode:
function Price(personType, price) { //vip 5 折 if (personType == 'vip') { return price * 0.5; } else if (personType == 'old'){ //老客户 3 折 return price * 0.3; } else { return price; //其他都全价 } }
Disadvantages: The bad thing is that when I have discounts from other aspects, or the discounts for my activities often change, like this It is necessary to constantly modify the conditions in if..else. And it also violates one of the principles of the design pattern: the principle of being closed for modification and open for expansion;
After using the strategy pattern:
// 对于vip客户 function vipPrice() { this.discount = 0.5; } vipPrice.prototype.getPrice = function(price) { return price * this.discount; } // 对于老客户 function oldPrice() { this.discount = 0.3; } oldPrice.prototype.getPrice = function(price) { return price * this.discount; } // 对于普通客户 function Price() { this.discount = 1; } Price.prototype.getPrice = function(price) { return price ; } // 上下文,对于客户端的使用 function Context() { this.name = ''; this.strategy = null; this.price = 0; } Context.prototype.set = function(name, strategy, price) { this.name = name; this.strategy = strategy; this.price = price; } Context.prototype.getResult = function() { console.log(this.name + ' 的结账价为: ' + this.strategy.getPrice(this.price)); } var context = new Context(); var vip = new vipPrice(); context.set ('vip客户', vip, 200); context.getResult(); // vip客户 的结账价为: 100 var old = new oldPrice(); context.set ('老客户', old, 200); context.getResult(); // 老客户 的结账价为: 60 var Price = new Price(); context.set ('普通客户', Price, 200); context.getResult(); // 普通客户 的结账价为: 200
Through the strategy pattern, the customer's discount and algorithm are decoupled , and allows modification and expansion to be carried out independently, without affecting the use of the client or other algorithms;
Usage scenarios:
The most practical occasion for the strategy pattern is in a certain "class" Contains a large number of conditional statements, such as if...else or switch. Each conditional branch causes the specific behavior of the "class" to change in a different way. Instead of maintaining a large conditional statement, it is better to divide each behavior into multiple independent objects. Each object is called a policy. Setting multiple such policy objects can improve the quality of our code and enable better unit testing.
Template patternDefines the skeleton of an algorithm in an operation, while deferring some steps to subclasses. Template methods allow subclasses to redefine specific steps of an algorithm without changing the structure of the algorithm.
In layman's terms, it means encapsulating some public methods into a parent class. Subclasses can inherit this parent class, and can override the methods of the parent class in the subclass to implement their own business logic.
Code implementation:
For example, front-end interviews basically include written tests, technical interviews, leadership interviews, HR interviews, etc. However, the written test questions and technical aspects of each company may be different or the same. , if the method is the same, inherit the method of the parent class, if it is different, rewrite the method of the parent class
var Interview = function(){}; // 笔试 Interview.prototype.writtenTest = function(){ console.log("这里是前端笔试题"); }; // 技术面试 Interview.prototype.technicalInterview = function(){ console.log("这里是技术面试"); }; // 领导面试 Interview.prototype.leader = function(){ console.log("领导面试"); }; // 领导面试 Interview.prototype.HR = function(){ console.log("HR面试"); }; // 等通知 Interview.prototype.waitNotice = function(){ console.log("等通知啊,不知道过了没有哦"); }; // 代码初始化 Interview.prototype.init = function(){ this.writtenTest(); this.technicalInterview(); this.leader(); this.HR(); this.waitNotice(); }; // 阿里巴巴的笔试和技术面不同,重写父类方法,其他继承父类方法。 var AliInterview = function(){}; AliInterview.prototype = new Interview(); // 子类重写方法 实现自己的业务逻辑 AliInterview.prototype.writtenTest = function(){ console.log("阿里的技术题就是难啊"); } AliInterview.prototype.technicalInterview = function(){ console.log("阿里的技术面就是叼啊"); } var AliInterview = new AliInterview(); AliInterview.init(); // 阿里的技术题就是难啊 // 阿里的技术面就是叼啊 // 领导面试 // HR面试 // 等通知啊,不知道过了没有哦
Application scenario:
The template mode is mainly used when some code has just been started and needs to be implemented at once. The changing part. However, if the page is modified in the future, part of the business logic needs to be changed or new business needs to be added. Mainly, the parent class is rewritten through the subclass, and other parts that do not need to be changed inherit the parent class.
The above is the detailed content of Detailed explanation of JavaScript strategy mode, template mode usage scenarios and implementation code. For more information, please follow other related articles on the PHP Chinese website!

JavaScript's application in the real world includes front-end and back-end development. 1) Display front-end applications by building a TODO list application, involving DOM operations and event processing. 2) Build RESTfulAPI through Node.js and Express to demonstrate back-end applications.

The main uses of JavaScript in web development include client interaction, form verification and asynchronous communication. 1) Dynamic content update and user interaction through DOM operations; 2) Client verification is carried out before the user submits data to improve the user experience; 3) Refreshless communication with the server is achieved through AJAX technology.

Understanding how JavaScript engine works internally is important to developers because it helps write more efficient code and understand performance bottlenecks and optimization strategies. 1) The engine's workflow includes three stages: parsing, compiling and execution; 2) During the execution process, the engine will perform dynamic optimization, such as inline cache and hidden classes; 3) Best practices include avoiding global variables, optimizing loops, using const and lets, and avoiding excessive use of closures.

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

Python and JavaScript have their own advantages and disadvantages in terms of community, libraries and resources. 1) The Python community is friendly and suitable for beginners, but the front-end development resources are not as rich as JavaScript. 2) Python is powerful in data science and machine learning libraries, while JavaScript is better in front-end development libraries and frameworks. 3) Both have rich learning resources, but Python is suitable for starting with official documents, while JavaScript is better with MDNWebDocs. The choice should be based on project needs and personal interests.

The shift from C/C to JavaScript requires adapting to dynamic typing, garbage collection and asynchronous programming. 1) C/C is a statically typed language that requires manual memory management, while JavaScript is dynamically typed and garbage collection is automatically processed. 2) C/C needs to be compiled into machine code, while JavaScript is an interpreted language. 3) JavaScript introduces concepts such as closures, prototype chains and Promise, which enhances flexibility and asynchronous programming capabilities.

Different JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.

JavaScript's applications in the real world include server-side programming, mobile application development and Internet of Things control: 1. Server-side programming is realized through Node.js, suitable for high concurrent request processing. 2. Mobile application development is carried out through ReactNative and supports cross-platform deployment. 3. Used for IoT device control through Johnny-Five library, suitable for hardware interaction.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SublimeText3 English version
Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.