Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 AspectJ 中,如果您不指定方法可见性,是否所有方法都“考虑”?
例子:
pointcut timed() : execution(@Timed !static * (@Metrics).*(..)) && this(object);
此处是否建议所有方法(公共、私有等)?