
Visual Studio 2019 In Depth
Discover and make use of the powerful features of the Visual Studio 2019 IDE to develop better and faster mobile, web, and desktop applications
- English
- ePUB (mobile friendly)
- Available on iOS & Android
Visual Studio 2019 In Depth
Discover and make use of the powerful features of the Visual Studio 2019 IDE to develop better and faster mobile, web, and desktop applications
About this book
Comprehensive guide to study the version updates from JDK9.0 to JDK13.0 Key Features
- Learn the journey of Java from its initial days till date.
- Learn how to implement modular programming in java9.
- Study the updates in different versions of Java from version 9.0 to 13.0.
- Understand the need and working of reactive programming.
- Learn to migrate the pre-existing Java code to new versions.
- Learn how to use jshell to test a new API before using in a project.
Description
Version release is one of the important phases of success of any programming language. Over the years, Java had made many improvements in its API to make to reliable and flexible to use. This book aims at providing you information related to all the updates from JDK9.0 to JDK13.0 in one place.This book starts with a brief history of Java. It covers how Java has evolved as a complete programming language over the years by launching different versions. You will learn the concept of module system and other important concepts introduced in JSE9.0 and JSE10.0. Moving ahead, the book will take you through updates in JDK11.0. Concepts like Epsilon, ZGC, and Nest-Based access control have also been discussed.Though the version updates are good to learn, they create complexities in updating the existing code to make it compatible with the new version. This book talks in detail about how you can migrate your legacy code to match up with the new versions. It also covers how to use jshell, a tool used to test your code snippet without writing the complete application class, with numerous examples. Further, this book covers in detail the concept of reactive programming. Concepts like publisher, subscriber, subscription and back-pressure have been discussed with examples.At the end of the book, you will learn about the very recent updates which have been released by Java. The chapters talk about JDK12.0 and JDK13.0. They cover concepts like Shenondaoh, microbenchmark suit, modified switch expression from JDK12.0. Though, Java13 is still a hot-plated dish, this book gives you a fair idea about what are the new updates which have been proposed in this version. What You Will Learn
By the end of this book, you will be able to implement the updates provided in different versions of Java. This book has covered the updates from version 9.0 to 13.0. You will be able to work with the Java Module System. You will be able to test the new API using jshell. Along with this, you will be able to migrate your legacy code to match the recommendations of new versions of Java. Who This Book is For This book covers the new version updates in Java. So, prior knowledge of Java is recommended before reading this book. Though we are covering the versions from JSE9.0 onwards, it is not necessary that the reader should be expert in the earlier versions. If you are keen to know the recent developments in Java API, this is the perfect book for you. Table of Contents
1. Insights of Versioning
2. What's new in Java9
3. Understanding JDK10 – Step towards JDK11
4. Dive in JDK11
5. Migrating the code
6. Working with JShell
7. Reactive Programming and Concurrency Updates
8. What next in Java12
9. Introduction to Java13 About the Author
Mandar Jog is a passionate Java Trainer with over 15 years of experience in retail and corporate training. He has global certifications like SCJP and SCWCD. His areas of expertise are Java, J2EE (Spring, Hibernate). He has delivered more than 500 training sessions on Core Java, Web Technologies, Hibernate, Spring Boot, Angular, etc. His LinkedIn profile: https://www.linkedin.com/in/mandar-jog-0ba9a01b/
Frequently asked questions
- Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
- Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Information
SECTION I
Getting Started
Introduction
- Installation
- Visual Studio IDE
- Intellisense
- Language and Coding Changes in C# 8
- .NET Core 3.0
CHAPTER 1
Getting Started with Visual Studio 2019
Structure
- Why Visual Studio 2019?
- Requirements and prerequisites
- Visual Studio 2019 Editions
- Installation options
- Choose what to install
- Launching Visual Studio 2019
Objective
Why Visual Studio 2019?
Solution Explorer, Server Explorer, Team Explorer, Data Sources, Properties window and the Toolbox window.The Solution Explorer
Solution Explorer window shows all the files in our projects, including classes, references, forms, or pictures. It serves as a quick way to switch between windows as well as do project or solution-oriented tasks, which are as follows:- Renaming of files
- Adding references quickly
- Removing project items
- Adding project items
Solution Explorer window:
The Properties window
Properties of an object such asforms, any controls on the form, web pages, the project or solution itself. Properties are characteristics of objects; for example, its name, size, location, color, or file name. Properties describe objects. The following screenshot displays the Properties window:
Properties window, we can also add the event handlers for the controls on the form, web page, or mobile screen; it looks similar to the following screenshot:
Load has an event. This event is named Form1_Load.Objectsname_eventname. The specific event’s name is added to the object’s name. This makes it easy for us to identify and search for certain events when the need arises.The Data Sources window
Data Sources Configuration Wizard window allows us to add data sources to our project. A data source is explained as a place or object from which we obtain data. This can be a database such as Microsoft SQL Server, Microsoft Access, Oracle, and so on. The following screenshot displays the Data Source Configuration Wizard window:
The Server Explorer window
Server Explorer window shows the details of all the servers that we are connected to. These include Cloud Services, SQLDatabases, and Virtual Machines, as shown in the following screenshot:
Table of contents
- SECTION I: Getting Started
- SECTION II: Tools
- SECTION III: Advanced Tools
- SECTION IV: Extensions
- Index