Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Mastering the Java Virtual Machine

You're reading from  Mastering the Java Virtual Machine

Product type Book
Published in Feb 2024
Publisher Packt
ISBN-13 9781835467961
Pages 234 pages
Edition 1st Edition
Languages
Author (1):
Otavio Santana Otavio Santana
Profile icon Otavio Santana

Table of Contents (19) Chapters

Preface 1. Part 1: Understanding the JVM
2. Chapter 1: Introduction to the Java Virtual Machine 3. Chapter 2: Class File Structure 4. Chapter 3: Understanding Bytecodes 5. Part 2: Memory Management and Execution
6. Chapter 4: Execution Engine 7. Chapter 5: Memory Management 8. Chapter 6: Garbage Collection and Memory Profiling 9. Part 3: Alternative JVMs
10. Chapter 7: GraalVM 11. Chapter 8: The JVM Ecosystem and Alternative JVMs 12. Part 4: Advanced Java Topics
13. Chapter 9: Java Framework Principles 14. Chapter 10: Reflection 15. Chapter 11: Java Annotation Processor 16. Chapter 12: Final Considerations 17. Index 18. Other Books You May Enjoy

Conventions used

There are a number of text conventions used throughout this book.

Code in text: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: “ACC_PUBLIC (0x0001) indicates that the class is public and can be accessed from other packages.”

A block of code is set as follows:

public final class AccessSample {    private int value;
    public AccessSample(int value) {
        this.value = value;
    }

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

public class ConstantPoolSample {    private String message = "Hello, Java!"; // String literal stored 
                                             // in the constant pool 
    public static void main(String[] args) {
        ConstantPoolSample sample = new ConstantPoolSample();
        System.out.println(sample.message); // Accessing the field 
                                          // with a symbolic reference
    }
}

Any command-line input or output is written as follows:

javac Animal.java javap -verbose Animal 

Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: “It’s worth mentioning that alternatives such as InstantOn from Open Liberty also exist”

Tips or important notes

Appear like this.

lock icon The rest of the chapter is locked
Next Chapter arrow right
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}