Java programming Ideas-generics-generic methods

Source: Internet
Author: User

The code examples are as follows:

 Packagegenerics;//: Generics/genericmethods.java Public classGenericmethods<a> {    //private static A element;     Public<T>voidf (T x) {System.out.println (X.getclass (). GetName ()); }    //Public static void Staticmethod (A x) {//    // }     Public Static voidMain (string[] args) {genericmethods<String> GM =NewGenericmethods<string>(); GM.F (""); GM.F (1); GM.F (1.0); GM.F (1.0F); GM.F (C);    GM.F (GM); }} /** Output:java.lang.String java.lang.Integer java.lang.Double java.lang.Float * Java.lang.Character genericmethods */// :~

The static method cannot access the type parameters of the generic class, for example:

In the example above

private static A element; This code error message is as follows:

Cannot make a static reference to the Non-static type a

##################

public static void Staticmethod (A x) {

}

The error message for this method is as follows:

Cannot make a static reference to the Non-static type a

What is the concept of automatic Java packaging?

Java programming Ideas-generics-generic methods

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.