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 static method in struct with Rust

1 Answer

0 votes
struct Rectangle {
    width:u32, height:u32
}

impl Rectangle { 
    // static method - creates objects of Rectangle
    fn get_instance(w: u32, h: u32) -> Rectangle { // accessed without an instance
        Rectangle { width: w, height: h }
    }
   
    fn display(&self) {
        println!("width:{} - height:{} - area:{}", self.width, self.height, self.area());
    }
}

impl Rectangle {
    fn area(&self)->u32 {
        self.width * self.height
    }
}



fn main() {
   let r = Rectangle::get_instance(27, 13);
   
   println!("width:{} - height:{} - area:{}", r.width, r.height, r.area());
   
   r.display();
}




/*
run:

width:27 - height:13 - area:351
width:27 - height:13 - area:351

*/

 



answered Oct 25, 2022 by avibootz

Related questions

1 answer 123 views
123 views asked Oct 25, 2022 by avibootz
2 answers 70 views
70 views asked Jan 22, 2025 by avibootz
1 answer 120 views
3 answers 154 views
2 answers 111 views
111 views asked May 3, 2023 by avibootz
1 answer 154 views
154 views asked Oct 25, 2022 by avibootz
1 answer 99 views
99 views asked Oct 25, 2022 by avibootz
...