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,907 questions

51,839 answers

573 users

How to return object from method in Java

1 Answer

0 votes
public class MyClass {
    int a, b; 
  
    MyClass(int _a, int _b) { 
        a = _a; 
        b = _b; 
    } 
    void print(MyClass o) { 
        System.out.println(o.a + " " + o.b); 
    } 
    MyClass rt() { 
        MyClass temp = new MyClass(a + 1, b + 2); 
        
        return temp; 
    } 
    public static void main(String args[]) {
        MyClass o1 = new MyClass(34, 99); 
        o1.print(o1);

        MyClass o2 = o1.rt(); 
        o2.print(o2);
    }
}



/*
run:

34 99
35 101

*/

 



answered Jul 25, 2019 by avibootz

Related questions

1 answer 100 views
1 answer 88 views
3 answers 285 views
3 answers 216 views
2 answers 187 views
187 views asked May 29, 2019 by avibootz
4 answers 190 views
...