Write code to simulate the combination of a phone and a SIM card. .........

Source: Internet
Author: User

Write code to simulate the combination of a phone and a SIM card.

Requirements:

SIM Card class is responsible for creating SIM card;

Phone class is responsible for creating mobile phones;

Mobile phone can be combined with a SIM card;

Your phone can replace the SIM card.

Package test;

public class Phone {
SIM sim;//declaring objects
void Setsim (SIM card) {
SIM = Card;
}
Long Looknumber () {
return Sim.getnumber ();
}
}

Package test;

public class SIM {
Long number;
SIM (long number) {
This.number = number;
}
Long GetNumber () {
return number;
}
}

Package test;

public class Shouji {

public static void Main (string[] args) {
TODO auto-generated method stubs
Sim SimOne = new SIM (18375431234L);//assigning Entities to objects
Phone mobile = new phone ();
Mobile.setsim (SimOne);//Call Method Setsim
System.out.println ("Mobile phone Number:" +mobile.looknumber ());
Sim Simtwo = new SIM (18375432345L);
Mobile.setsim (Simtwo);
System.out.println ("mobile phone number changed to:" +mobile.looknumber ());
}

}

Write code to simulate the combination of a phone and a SIM card. .........

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.