Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Java Data Structures Getting There Type Casting

Rashmi Jha
Rashmi Jha
2,842 Points

java-repl

what is java-repl and why do we use java-repl?

2 Answers

Pranshu Gupta
PLUS
Pranshu Gupta
Courses Plus Student 5,483 Points

REPL, or read-eval-print-loop, is a shell interface that reads each line of input, evaluates that line, and then prints the result, hence you get instant feedback. And when you use a REPL, you are writing code interactively and executing it without delay.

Rashmi Jha
Rashmi Jha
2,842 Points

Thanks pranshu for your help.

Hi Rashmi,

Java REPL is an interactive Java shell. REPL stands for Read-Eval-Print-Loop, which means it will read each line of input, evaluate that line, then print out the result

REPL is useful to get instant feedback/evaluation for an expression you are trying to implement in your own Java programs. It lets you experiment and see exactly how Java will evaluate your inputs without having to worry about incorporating it into your code only to find out what you are trying to do doesn't work.

I hope that helps!

Rashmi Jha
Rashmi Jha
2,842 Points

Thanks patrick for your help.