edu.ustc.cs.compile.arch
接口 Director

所有已知实现类:
MIPSDirector, X86Director

public interface Director

The root interface in the director hierarchy.

A director is the first token in the directive, which always begin with a dot. Any new kind of assembly language should give an implementation of this interface, which should provide a method toString(). And it recommends that the implementation could represent all directors in the new assembly language.
The examples of representing directors of x86 assembly language and mips assembly language can be respectively found in the descriptions of X86Director and MIPSDirector.


方法摘要
 java.lang.String toString()
          Gets a string representation of the director.
 

方法详细信息

toString

java.lang.String toString()
Gets a string representation of the director.

覆盖:
java.lang.Object 中的 toString
返回:
a string representation of the director.