In documentation code I see some things like this:
/*
* @(#)File.java 1.142 09/04/01
what does characters like @(#) meaning?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
@(#)is the character string used by the Unixwhatcommand to filter strings from binaries to list the components that were used to build that binary. For instancewhat javaon AIX yields:while `strings java | grep ‘@(#)’ yields:
@(#)was chosen as marker because it would not occur elsewhere, source code controls systems typically add a line containing this marker and the description of the file version on synchronisation, expanding keywords with values reflecting the file contents.For instance, the comment you list would be the result of expanding the SCCS keywords
%Z% %M% %R%.%L% %E%where the%Z%translates into@(#).