Java textbook example 3

Source: Internet
Author: User

The Import Statement can use the import statement to introduce classes in the package. Many classes provided by Java are often used in addition to writing the classes in the source file. These classes may be in different packages, java provides more than 130 packages, such as java. the applet contains all java classes that implement java applet. awt contains the image, text, and window GUI class java in the abstract window tool set. awt. image contains the image processing class java in the abstract window tool set. lang contains all the basic language classes java. io contains all input and output classes java.net contains all classes that implement network functions. util contains useful data type classes [html] import java. applet. applet; import java. awt. *; public class xiaochengxu extends Applet {www.2cto.com Button redbutton; public void init () {redbutton = new Button ("I Am a red Button"); redbutton. setBackground (Color. red); redbutton. setForeground (Color. white); add (redbutton);} the protected and private classes cannot be used.

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.