Description of the Java design pattern interpreter pattern (interpreter mode) _java

Source: Internet
Author: User

Interpreter definition: Defines the grammar of a language and creates an interpreter to interpret the sentences in that language.

Interpreter does not seem to have a wide range of facets, it describes how a language interpreter is constructed, and in practical applications we may rarely construct a language grammar. Let's just take a quick look.

The first step is to create an interface to describe the common operation.

Copy Code code as follows:

Public interface Abstractexpression {
void interpret (context context);
}

And look at some global information outside of the interpreter.

Copy Code code as follows:

Public interface Context {}

The concrete implementations of abstractexpression are divided into two types: non-terminal expressions and non-terminal expressions.
public class Terminalexpression implements Abstractexpression {
public void Interpret {}
}

No non-terminal expression is required for a rule in the grammar:
public class Nonterminalexpression implements Abstractexpression {
Private Abstractexpression successor;
  
public void Setsuccessor (Abstractexpression successor) {
This.successor = successor;
}

Public Abstractexpression Getsuccessor () {
return successor;
}

public void Interpret {}
}

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.