This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
HelloWorld/AspectJ/helloWorld.j
2021-12-05 06:57:03 +08:00

8 lines
174 B
Text

public aspect HelloWorld
{
pointcut mainCall() : call(public static void *.main(String[] args));
before() : mainCall()
{
System.out.println("Hello World");
}
}