Mis ilmub ekraanile?
import java.util.*;public class MinuComparator implements Comparator<String> { public int compare(String a, String b) { return b.compareTo(a); }}
import java.util.Set;import java.util.TreeSet;public class CompDemo { public static void main(String args[]) { Set<String> ts = new TreeSet<>(new MinuComparator()); ts.add("C"); ts.add("A"); ts.add("E"); ts.add("D"); for (String o : ts) System.out.print(o + " "); }}
Milline väide on tõene?
Kuidas eemaldada korduvad elemendid listist meielist?
Mis on erinevus TreeSet ja SortedSet vahel?
Єдиний податок належить до:
Mis ilmub ekraanile?
import java.util.Set;import java.util.TreeSet;public class TestTreeSet { public static void main(String[] args) { Set<String> hulk = new TreeSet<>(); hulk.add("2"); hulk.add("9"); hulk.add("5"); hulk.add("22"); hulk.add("1"); hulk.add("15"); System.out.println(hulk); }}
¿Cuál es el valor numérico, en decimal, del campo "Identifier" de la cabecera ICMP en el datagrama enviado?
What is the numeric value, in decimal, of the "Identifier" field of the ICMP header in the sent datagram?¿Cuál es la MAC que corresponde al host con IP 8.8.8.8?
What is the MAC that corresponds to the host with IP 8.8.8.8?¿Cuál es el tamaño de la trama completa enviada?
What is the size of the complete frame sent?¿Por qué en Wireshark aparece, dentro de Ethernet II, un campo llamado "padding"? Why does a field called "padding" appear inside Ethernet II in Wireshark?