惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
J
Java Code Geeks
Jina AI
Jina AI
罗磊的独立博客
宝玉的分享
宝玉的分享
S
SegmentFault 最新的问题
D
DataBreaches.Net
博客园 - 叶小钗
腾讯CDC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Google DeepMind News
Google DeepMind News
阮一峰的网络日志
阮一峰的网络日志
B
Blog
V
Visual Studio Blog
雷峰网
雷峰网
博客园 - 【当耐特】
Apple Machine Learning Research
Apple Machine Learning Research
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
JShell: Java's Built-In Scratchpad for Trying Code Fast
Md Jamilur Rahman · 2026-06-21 · via DEV Community

Here's a familiar feeling. You want to test one small thing in Java — maybe how String.substring() behaves, or whether a regex pattern matches. So you create a file, write a class, add a main method, type System.out.println, compile, run. All that ceremony for a one-line answer.

JShell does away with the ceremony. It's a read-eval-print loop (REPL) that ships with the JDK since Java 9. You type Java code, press Enter, and see the result immediately. No class, no main method, no compile step. Think of it as a calculator for Java.

Starting JShell

Open a terminal and type:

jshell

If your JDK is installed and on your PATH, you'll see a welcome message and the jshell> prompt. That's it. You're in.

If you get a "command not found" error, double-check that the JDK (not just the JRE) is installed and the bin folder is on your PATH.

Your First Snippets

In JShell, the bits of code you type are called snippets. A snippet can be an expression, a variable, a method, or even a full class. Let's try a few:

jshell> int age = 25
age ==> 25

jshell> age * 2
$2 ==> 50

jshell> "hello".toUpperCase()
$3 ==> "HELLO"

Notice two things. First, no semicolons needed. JShell adds them for you if you forget. Second, when you type an expression without storing it in a variable, JShell creates a scratch variable for you automatically ($2, $3, and so on). You can reuse these later:

jshell> $2 + 10
$5 ==> 60

This is handy when you're poking around and don't want to name every intermediate result.

Defining Methods and Classes

You can define full methods in JShell, not just expressions. Here's a simple one:

jshell> int square(int n) {
   ...>     return n * n;
   ...> }
|  created method square(int)

jshell> square(7)
$7 ==> 49

The ...> prompt means JShell knows you're in the middle of a multi-line snippet and is waiting for you to finish. Close the braces and press Enter.

Classes work the same way. You can define a class, instantiate it, and call methods on it, all without leaving the prompt.

Changing What You Already Wrote

This is where JShell gets genuinely useful. If you redefine a method or variable, the old version is replaced. No need to start over.

jshell> String grade(int score) {
   ...>     if (score >= 90) return "Pass";
   ...>     return "Fail";
   ...> }
|  created method grade(int)

jshell> grade(85)
$3 ==> "Fail"

That pass threshold feels too strict. Just retype the method with a change:

jshell> String grade(int score) {
   ...>     if (score >= 80) return "Pass";
   ...>     return "Fail";
   ...> }
|  modified method grade(int)

jshell> grade(85)
$5 ==> "Pass"

The method updated in place. Any other methods that called grade will use the new version automatically. For longer snippets, use the /edit command to pop open a text editor instead of retyping:

jshell> /edit grade

Make your changes, save, and close the editor. JShell picks up the new version.

The Slash Commands You'll Actually Use

JShell has about 20 commands, all starting with a forward slash. You won't need all of them. Here are the ones that matter day to day:

/list            # show everything you've typed, with IDs
/vars            # show all variables and their values
/methods         # show all methods you've defined
/types           # show classes, interfaces, and enums
/imports         # show active imports

To manage your session:

/save myfile.jsh   # save all snippets to a file
/open myfile.jsh   # load snippets back in later
/reset             # wipe everything and start fresh
/drop 3            # remove a specific snippet by ID
/history           # see everything typed, in order
/exit              # leave JShell

Pro tip: command abbreviations work as long as they're unique. /l runs /list. /v runs /vars. /sa runs /save (since /s alone is ambiguous between /save and /set).

Tab Completion and Shortcuts

Press Tab while typing and JShell fills in the rest. This works for commands, class names, and method names. If there's more than one option, Tab shows you all of them.

A few shortcuts worth knowing:

  • Tab after a method's opening parenthesis shows you the parameter types. Press Tab again for a description.
  • Up/Down arrows scroll through your history, just like a regular shell.
  • Ctrl+R searches backward through what you've typed.
  • /! reruns your last snippet. /-3 reruns the snippet from 3 steps ago.

The Shift+Tab then V shortcut is a neat trick: type an expression, hit that combo, and JShell converts it into a variable declaration with the correct type filled in.

Feedback Modes

By default, JShell shows a reasonable amount of feedback. But when you're learning, more detail helps. Switch to verbose mode:

jshell> /set feedback verbose

Verbose mode explains what happened after each snippet — what was created, modified, or dropped, and what type it is. Once you're comfortable, switch back to normal or concise:

jshell> /set feedback normal
jshell> /set feedback concise

There's also silent mode if you want zero output (useful when piping JShell into scripts).

Saving and Reusing Sessions

One complaint people have about REPLs: you lose everything when you close them. JShell solves this with /save and /open.

Before you exit, save your work:

/save practice.jsh

Next time you start JShell, load it back:

/open practice.jsh

You can also pass a file directly when launching:

jshell practice.jsh

This makes JShell practical for more than throwaway experiments. Keep a .jsh file of helper methods you use often, and load it whenever you start a session.

When to Reach for JShell

JShell isn't a replacement for your IDE. It's a tool for specific moments:

  • Learning the language. Type a construct, see what it does, no friction.
  • Testing an API. Wondering what LocalDate.of(2026, 2, 31) does? Find out in two seconds instead of writing a test class.
  • Debugging a tricky expression. Isolate the line that's misbehaving and poke at it in isolation.
  • Prototyping. Sketch out a method, iterate on it interactively, then paste the working version into your project.

The thing I like most about JShell is that it removes the fear of experimentation. In a normal Java project, trying something feels expensive. In JShell, it costs nothing. You type, you see, you move on.

Quick Summary

  • JShell is a REPL that ships with the JDK. Type jshell to start it.
  • Snippets can be expressions, variables, methods, or classes. No main method required.
  • Forgot a semicolon? JShell adds it for you.
  • Scratch variables ($1, $2, ...) hold results you didn't name.
  • Redefine a method to change it. Other code picks up the new version.
  • /list, /vars, /methods, /save, /open, /reset, and /exit cover most of what you need.
  • Tab completion works for commands and code. /! reruns your last snippet.
  • Use /set feedback verbose while learning, then dial it back.
  • Save sessions with /save and reload them with /open.

Based on dev.java/learn — JShell: The Java Shell Tool