Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,847 questions

51,768 answers

573 users

How to implement array push and pop in Java

2 Answers

0 votes
import java.util.ArrayList;
import java.util.Arrays;

public class Program {
    static ArrayList<Integer> array = new ArrayList<>(Arrays.asList(1, 2, 3, 4));
    
    public static void push(int n) {
        array.add(n);
    }
    
    public static void pop() {
        array.remove(array.size() - 1);
    }
    
    public static void main(String[] args) {
        push(23);
        push(78);
        push(99);

        System.out.println(array);

        pop();
        pop();

        System.out.println(array);
    }
}
 
  
  
/*
run:
  
[1, 2, 3, 4, 23, 78, 99]
[1, 2, 3, 4, 23]
  
*/

 



answered Jun 6, 2024 by avibootz
0 votes
import java.util.ArrayList;
import java.util.Arrays;

public class Program {
    static ArrayList<Integer> array = new ArrayList<>();
    
    public static void push(int n) {
        array.add(n);
    }
    
    public static void pop() {
        array.remove(array.size() - 1);
    }
    
    public static void main(String[] args) {
        push(23);
        push(78);
        push(99);

        System.out.println(array);

        pop();
        pop();

        System.out.println(array);
    }
}
 
  
  
/*
run:
  
[23, 78, 99]
[23]
  
*/

 



answered Jun 6, 2024 by avibootz

Related questions

1 answer 112 views
112 views asked Jun 6, 2024 by avibootz
1 answer 137 views
1 answer 147 views
1 answer 151 views
151 views asked Mar 10, 2024 by avibootz
1 answer 158 views
1 answer 261 views
...