home *** CD-ROM | disk | FTP | other *** search
Java Source | 1999-06-07 | 278 b | 14 lines |
- class TestAccesso {
-
- public static void main(String[] args) {
-
- ScatolaNera sn = new ScatolaNera();
- sn.campo_pubblico = 100;
- // errore di compilazione:
- // sn.campo_privato = 100;
- sn.metodo_pubblico();
- // errore di compilazione:
- // sn.metodo_privato();
- }
- }
-