Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // http://krajta.com/?Predmety-FIM-PGRF-testy&p=127640#127640
- /* -------------------------------------------------- */
- public class Ctverec {
- public double hrana;
- public Ctverec(double hrana) {
- // ...
- }
- public void draw() {
- // ...
- }
- }
- /* -------------------------------------------------- */
- public class Main {
- public static void main(String[] args) {
- Ctverec c1;
- c1 = new Ctverec(7);
- c1.draw();
- // nebo:
- Ctverec c2 = new Ctverec(7);
- c2.draw();
- // nebo pokud uz dal nepotrebujes referenci na ctverec:
- new Ctverec(7).draw();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment