How to write interface variable length generics

how to write interface variable length generics

Xiaobai, what should I do to achieve the effect of the following code

related codes

@FunctionalInterface
public interface Convert1N<T..., R> {

    /**
     * 
     * Applies this function to the given arguments.
     *
     * @param t the function argument
     * @return the function result
     */
    R apply(T... t);
}

-sharp-sharp-sharp , 
![ , ][1]

Apr.10,2022

@FunctionalInterface
public interface Convert1N<T, R> {

    /**
     * 
     * Applies this function to the given arguments.
     *
     * @param t the function argument
     * @return the function result
     */
    R apply(T... t);
}
The

interface layer does not need to be longer. It's just a definition of paradigm. Longer is only used in the actual interface.

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b40ce0-3490b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b40ce0-3490b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?