Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 17 java.base.jmod - Base Module
JDK 17 java.base.jmod is the JMOD file for JDK 17 Base module.
JDK 17 Base module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\java.base.jmod.
JDK 17 Base module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Base module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\java.base.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ java/lang/NullPointerException.java
/* * Copyright (c) 1994, 2020, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.lang; /** * Thrown when an application attempts to use {@code null} in a * case where an object is required. These include: * <ul> * <li>Calling the instance method of a {@code null} object. * <li>Accessing or modifying the field of a {@code null} object. * <li>Taking the length of {@code null} as if it were an array. * <li>Accessing or modifying the slots of {@code null} as if it * were an array. * <li>Throwing {@code null} as if it were a {@code Throwable} * value. * </ul> * <p> * Applications should throw instances of this class to indicate * other illegal uses of the {@code null} object. * * {@code NullPointerException} objects may be constructed by the * virtual machine as if {@linkplain Throwable#Throwable(String, * Throwable, boolean, boolean) suppression were disabled and/or the * stack trace was not writable}. * * @since 1.0 */ public class NullPointerException extends RuntimeException { @java.io.Serial private static final long serialVersionUID = 5162710183389028792L; /** * Constructs a {@code NullPointerException} with no detail message. */ public NullPointerException() { super(); } /** * Constructs a {@code NullPointerException} with the specified * detail message. * * @param s the detail message. */ public NullPointerException(String s) { super(s); } // 0: no backtrace filled in, no message computed. // 1: backtrace filled in, no message computed. // 2: message computed private transient int extendedMessageState; private transient String extendedMessage; /** * {@inheritDoc} */ public synchronized Throwable fillInStackTrace() { // If the stack trace is changed the extended NPE algorithm // will compute a wrong message. So compute it beforehand. if (extendedMessageState == 0) { extendedMessageState = 1; } else if (extendedMessageState == 1) { extendedMessage = getExtendedNPEMessage(); extendedMessageState = 2; } return super.fillInStackTrace(); } /** * Returns the detail message string of this throwable. * * <p> If a non-null message was supplied in a constructor it is * returned. Otherwise, an implementation specific message or * {@code null} is returned. * * @implNote * If no explicit message was passed to the constructor, and as * long as certain internal information is available, a verbose * description of the null reference is returned. * The internal information is not available in deserialized * NullPointerExceptions. * * @return the detail message string, which may be {@code null}. */ public String getMessage() { String message = super.getMessage(); if (message == null) { synchronized(this) { if (extendedMessageState == 1) { // Only the original stack trace was filled in. Message will // compute correctly. extendedMessage = getExtendedNPEMessage(); extendedMessageState = 2; } return extendedMessage; } } return message; } /** * Get an extended exception message. This returns a string describing * the location and cause of the exception. It returns null for * exceptions where this is not applicable. */ private native String getExtendedNPEMessage(); }
⏎ java/lang/NullPointerException.java
Or download all of them as a single archive file:
File name: java.base-17.0.5-src.zip File size: 8883851 bytes Release date: 2022-09-13 Download
2023-09-26, 102473👍, 1💬
Popular Posts:
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime e...
What Is commons-fileupload-1.3.3 .jar?commons-fileupload-1.3.3 .jaris the JAR file for Apache Common...
JRE 5 sunjce_provider.jar is the JAR file for JRE 5 Sun JCE Provider, which provides implementations...
ASM is an all purpose Java bytecode manipulation and analysis framework. It can be used to modify ex...
JDK 11 jdk.internal.vm.compiler .jmodis the JMOD file for JDK 11 Internal VM Compiler module. JDK 11...