Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,855 questions

51,776 answers

573 users

How to use this in class with Java

2 Answers

0 votes
package javaapplication1;

class Worker {
  String name;
  int age;
  Worker(String name, int age) {
    this.name = name;
    this.age = age;
  }
  void print(){
    System.out.println("Name: " + name + " Age: " + age);
  }
}

public class JavaApplication1 {

    public static void main(String[] args) {
        Worker w = new Worker("Dom", 50);
        w.print();
    }
}


/*
run:

Name: Dom Age: 50

*/

 



answered Jul 5, 2017 by avibootz
0 votes
package javaapplication1;

class Worker {
  String name;
  int age;
  Worker(String name){
    this.name = name;
  }
  Worker(String _name, int _age) {
    this(_name);
    age = _age;
  }
  void print(){
    System.out.println("Name: " + name + " Age: " + age);
  }
}

public class JavaApplication1 {

    public static void main(String[] args) {
        Worker w = new Worker("Rebecca", 40);
        w.print();
    }
}


/*
run:

Name: Rebecca Age: 40

*/

 



answered Jul 5, 2017 by avibootz

Related questions

1 answer 134 views
1 answer 73 views
73 views asked Feb 4, 2023 by avibootz
1 answer 127 views
1 answer 245 views
2 answers 154 views
154 views asked Mar 31, 2018 by avibootz
1 answer 146 views
...