import java.util.ArrayList; import java.util.Collections; public class Main { public static void main(String[] args) { // ArrayList = A resizeable array that stores objects (autoboxing) // Arrays are fixed in size, but ArrayLists can change ArrayList fruits = new ArrayList(); fruits.add("Apple"); fruits.add("Orange"); fruits.add("Banana"); fruits.add("Coconut"); //fruits.remove(0); //fruits.set(0, "Pineapple"); Collections.sort(fruits); for(String fruit : fruits){ System.out.println(fruit); } } }
@MelonOof2 ай бұрын
@ksoringer2953Ай бұрын
BRO, do you have a git hub with these JAVA-codes, that big course where you taught using Eclipse? That would be incredible.
@Saalltt2 ай бұрын
After a long time bro you are active on youtube. ❤❤
@nwuzigodswill12 ай бұрын
Welcome Back. We have been waiting for you
@ALEXANDERCOSTABRASILIANOSILVA2 ай бұрын
Excelente conteúdo
@Dhruv-g1b2 ай бұрын
Thanks bro
@anirudh26602 ай бұрын
Please make video on wordpress, Shopify. It will contribute to my career. Know a alphabet is waste of time if I don't use it for my communication. As well knowing language is not enough current it industry.
@Stuxel2 ай бұрын
Hey Bro, how do you set your console like that? or is it video editing?
@AbduqodirOdiljonov-o4x2 ай бұрын
BroCode which playlist is it? New Java playlist?
@IlyomariaLikesCookies2 ай бұрын
Can you please teach x86 assembly?
@HnxzxvrАй бұрын
idk about you but I wouldn’t use x86 assembly for a hello world script
@IlyomariaLikesCookiesАй бұрын
@Hnxzxvr but i would its a very great programming language it can do anyhing
@lingodata75762 ай бұрын
❤😂 1:32 Wait until bro knows about ArrayList instead of arrays