Skip to content

T_Cyjb_Compilers_Lexers_LexerFactory_2

CYJB edited this page Mar 23, 2024 · 8 revisions

LexerFactory(T, TController) 类

表示词法分析器的工厂。

继承层次

System.Object
  Cyjb.Compilers.Lexers.LexerFactory(T, TController)
Namespace: Cyjb.Compilers.Lexers
Assembly: Cyjb.Compilers.Runtime (in Cyjb.Compilers.Runtime.dll) Version: 1.0.20+d347ea0351607fb282fdf60a5301f9cccb3ab27e

语法

C#

public sealed class LexerFactory<T, TController> : ILexerFactory<T>
where T : struct, new()
where TController : new(), LexerController<T>

类型参数

 

T
词法单元标识符的类型,一般是一个枚举类型。
TController
词法分析控制器的类型。
  The LexerFactory(T, TController) type exposes the following members.

构造函数

 

名称 说明
公共方法 LexerFactory(T, TController) 使用指定的词法分析器数据初始化 LexerFactory(T, TController) 类的新实例。
  Back to Top

方法

 

名称 说明
公共方法 CreateRunner 创建词法分析运行器。
公共方法 CreateTokenizer 创建词法分析器。
公共方法 Equals Determines whether the specified object is equal to the current object. (继承自 Object。)
公共方法 GetHashCode Serves as the default hash function. (继承自 Object。)
公共方法 GetType Gets the Type of the current instance. (继承自 Object。)
公共方法 ToString Returns a string that represents the current object. (继承自 Object。)
  Back to Top

Remarks

关于如何构造自己的词法分析器,可以参考我的博文 《C# 词法分析器(六)构造词法分析器》

参见

Reference

Cyjb.Compilers.Lexers 命名空间

Other Resources

《C# 词法分析器(六)构造词法分析器》
Clone this wiki locally