We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
public abstract class UnsupportedStatementAdapter implements Statement
public class TStatement extends UnsupportedStatementAdapter
为什么要有adapter这个中间类?
The text was updated successfully, but these errors were encountered:
@sidawei
Sorry, something went wrong.
你好 这个主要是因为TStatement中并没有实现Statement中的全部方法,一些不支持的方法是直接抛出异常的。 为了避免TStatement中有很多这种未实现方法影响可读性,所以把这些方法抽取到了父类中,此外暂时无其他作用。
No branches or pull requests
为什么要有adapter这个中间类?
The text was updated successfully, but these errors were encountered: