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?
The text was updated successfully, but these errors were encountered:
@workerthread public abstract B createBehavior(Context context) throws Exception;
是不是这才是你的想要在Plugin类中定义的,和创建对象没什么关系。
不过你现在写了个默认实现 @workerthread public B createBehavior(Context context) throws Exception { return null; }
Sorry, something went wrong.
No branches or pull requests
如果不想被创建对象的话似乎可以私有构造函数,但我看了构造函数是public,是否需要更正去掉abstract?
The text was updated successfully, but these errors were encountered: