0

I was looking at some Java code and I saw this: @Override. I know what that means, but then I saw it again with a different word so I was wondering, what does this (@) do in Java?

Serket
  • 3,785
  • 3
  • 14
  • 45
  • 4
    Does this answer your question? [in java what does the @ symbol mean?](https://stackoverflow.com/questions/31822020/in-java-what-does-the-symbol-mean) – lucidbrot Jul 20 '20 at 21:05

1 Answers1

1

The @ at are annotations, you can check more details here.

Sergio Santiago
  • 1,316
  • 1
  • 11
  • 19