Visibility for constructor

If i have simply declared a constructor in my java file what level of visibility it holds . Public/private/protected or default ..and Why ?
[146 byte] By [tony_aima] at [2007-11-27 7:37:49]
# 1
That depends on how you declared it. If you specified an access modifier then it should be clear the visibility is the same. If you didn't explicitly declare it then you have default...
Peetzorea at 2007-7-12 19:18:27 > top of Java-index,Java Essentials,New To Java...
# 2
http://java.sun.com/docs/books/jls/third_edition/html/j3TOC.html
tschodta at 2007-7-12 19:18:27 > top of Java-index,Java Essentials,New To Java...