by WeCanCode-Author | Oct 20, 2021 | How-To, Java, Learn, Program
Make WordPress as Android App
In this article, let discuss on
Make WordPress as Android App
Make WordPress as Android App. Yes, follow the article from top to bottom and do not miss out anything. In the end you will see your website or WordPress blog in Android phone as an application.
You can also publish the app in Google Play Store or any eco-system for Android apps (Such as Amazon app store, Samsung galaxy app store, Honor/Huawei App Gallery and So on).
How to Make WordPress as Android App?
Converting WordPress blog or Website is easy if you have hands-on with Android Studio and Android SDKs.
Yes, you need to know little bit of java coding knowledge and basics of Android application development. Do not worry if you have very little knowledge on these both should also be fine. If you follow this article carefully.
October 20, 2021
Senior Developer | Java & C#.NET | 10++ years of IT experience.
Planning to learn ReactJS or Angular or Flutter.!
by WeCanCode-Author | Aug 23, 2020 | Java, Program
What is Streams?
Stream is a new abstract layer introduced in Java 8, It represents a sequence of objects from a source, which supports aggregate operations.
To understand better, lets take basic sql function distinct.
SELECT DISTINCT(USER_TYPE_ FROM [MYSCHEMA].[USER];
In the above SQL script, we perform Distinct operation using the DISTINCT method. which actually performs operation on the retrived data/rows.
Similarly Java8:Streams also performs operation or action on collective data.
Follow are the characteristic of Java8:Streams
- Sequence of elements − Stream provides a set of elements of specific type in a sequential manner. A stream gets/computes/manipulated the elements/data. It never stores the manipulated elements/data.
- Source − Stream accepts Collections, Arrays, or I/O resources as input source.
- Aggregate operations − Stream supports aggregate operations such as filter, map, limit, reduce, find, match, & so on.
- Pipelining − Most of the stream operations return stream itself so that their result can be pipelined. These operations are called intermediate operations and their function is to take input, process them, and return output to the target. collect() method is a terminal operation which is normally present at the end of the pipelining operation to mark the end of the stream.
- Automatic iterations − Stream operations do the iterations internally over the source elements provided, in contrast to Collections where explicit iteration is required.
Lets continure in the next part..