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,851 questions

51,772 answers

573 users

How to add an element at the end of a stream in Java

2 Answers

0 votes
import java.util.Arrays;
import java.util.List;
import java.util.Collection;
import java.util.stream.Stream;
import java.util.stream.Collectors;

public class MyClass {
    public static<T> Stream<T> AddToEnd(Stream<T> stream, T element) {
        List<T> result = stream.collect(Collectors.toList());
        result.add(element);
 
        return result.stream();
    }
 
    public static void main(String[] args)
    {
        Stream<Integer> st = Stream.of(2, 5, 8, 4, 3);
        
        st = AddToEnd(st, 99);
 
        System.out.println(Arrays.toString(st.toArray()));
    }
}
 
 
 
 
/*
run:
 
[2, 5, 8, 4, 3, 99]

*/

 



answered Mar 16, 2023 by avibootz
0 votes
import java.util.Arrays;
import java.util.stream.Stream;

public class MyClass {
    public static<T> Stream<T> AddToEnd(Stream<T> stream, T element) {
        return Stream.concat(stream, Stream.of(element));
    }
 
    public static void main(String[] args)
    {
        Stream<Integer> st = Stream.of(2, 5, 8, 4, 3);
        
        st = AddToEnd(st, 99);
 
        System.out.println(Arrays.toString(st.toArray()));
    }
}
 
 
 
 
/*
run:
 
[2, 5, 8, 4, 3, 99]

*/

 



answered Mar 16, 2023 by avibootz

Related questions

2 answers 154 views
3 answers 193 views
1 answer 179 views
1 answer 201 views
2 answers 250 views
...