code

Java 9 Strings

String in Java 9 is a data type just like integer and floating point, but it is used to represent text rather than numbers or a single character.

Java Hello World – How to Run

In this article we will show you how to start programming in Java from scratch. We will use Java 9 for this beginner tutorial and write and run a “Hello, World!” example program on your computer.

C++ Hello World

This is a C++ introduction tutorial for beginners with an example that will print the text “Hello, World!” written in C++ into the console window.

C++ Boost Asio Introduction Tutorial

In the C++ Boost.ASIO library, ASIO stands for asynchronous input/output. This library allows asynchronous processing of data. Asynchronous means that a program doesn’t have to wait for completion of an operation to start a new one. It can execute more than one operations concurrently.

C++ Function Templates with Examples

In this tutorial we will give an introduction to C++ function templates and provide simple function template examples and a more complex sort predicates example with generic sorting template function. And to the end, there are some examples on C++ template function specialization.

React Native Navigation example

There are many navigation options for React Native. In this example we will show how to implement a basic hybrid app navigation with the React Navigation library and native TabNavigator and StackNavigator components.