SlideShare a Scribd company logo
First Java Errors
Hello? No Whirl?
class Main {

public static void main(String[] args) {

System.out.println("Howdy, world!")

}

}
javac -classpath 

.:/run_dir/junit-4.12.jar:target/dependency/* 

-d . Main.java

Main.java:1: error: reached 

end of file while parsing

z

^

1 error

compiler exit status 1



What went wrong?
class Main {

public static void main(String[] args) {

System.out.println("Howdy, world!”);

}

}
Missing semicolon
the program continued

to the end of file

looking for the semicolon
What could go wrong?
class Main {

static void main(String[] args) {

System.out.println("Howdy, world!”); }

}
java -classpath .:/run_dir/junit-4.12.jar:target/dependency/
* Main

Error: Main method not found in class Main, please define the
main method as:

public static void main(String[] args)

or a JavaFX application class must extend
javafx.application.Application

exit status 1
Forgot Public
main method must be accessible
class Main {

public static void main(String[] args) {

System.out.println("Howdy, world!”); }

}
class Main {

public static void main(String[] vars) {

}

}
Whats wrong here?
class Main {

public static void main(String[] vars) {

// empty but that compiles 

}

}
Nothing
args (or vars) are dummy names

can be any legal name
class Main {

public void main(String[] args) {

System.out.println("Howdy, world!")

}

}
What went wrong?
class Main {

public static void main(String[] args) {

System.out.println("Howdy, world!")

}

}
The starting method main
must be static
(so it is there from the start)
But, if you get it all correct…

will it fetch the bone!!!

or is something wrong?
YES OK sq brackets[ ] required for string array
Curly brackets in correct place and matching
match
match
It will !!
Basic Java Errors
Hello? No Whirl?
#&!fin’

More Related Content

Similar to Very basic java errors

Core Java- An advanced review of features
Core Java- An advanced review of featuresCore Java- An advanced review of features
Core Java- An advanced review of featuresvidyamittal
 
Packaes & interfaces
Packaes & interfacesPackaes & interfaces
Packaes & interfaces
yugandhar vadlamudi
 
Core java introduction
Core java introduction Core java introduction
Core java introduction
Som Prakash Rai
 
2 jfh-yourveryfirstprogram
2  jfh-yourveryfirstprogram2  jfh-yourveryfirstprogram
2 jfh-yourveryfirstprogram
AboutHydrology Slides
 
LausanneJUG 2017 - Jigsaw est prêt à tuer le classpath
LausanneJUG 2017 - Jigsaw est prêt à tuer le classpathLausanneJUG 2017 - Jigsaw est prêt à tuer le classpath
LausanneJUG 2017 - Jigsaw est prêt à tuer le classpath
Alexis Hassler
 
File Handling.pptx
File Handling.pptxFile Handling.pptx
File Handling.pptx
PragatiSutar4
 
Java Serialization
Java SerializationJava Serialization
Java Serialization
jeslie
 
Basics of java 1
Basics of java 1Basics of java 1
Basics of java 1
Vijay Kankane
 
Java
JavaJava
Java
Abrar ali
 
PAGE 1Input output for a file tutorialStreams and File IOI.docx
PAGE  1Input output for a file tutorialStreams and File IOI.docxPAGE  1Input output for a file tutorialStreams and File IOI.docx
PAGE 1Input output for a file tutorialStreams and File IOI.docx
alfred4lewis58146
 
Unit2 java
Unit2 javaUnit2 java
Unit2 javamrecedu
 
Java Hello program with output
Java Hello program with outputJava Hello program with output
Java Hello program with output
aashukaushik
 
Unit of competency
Unit of competencyUnit of competency
Unit of competency
loidasacueza
 
Java For beginners and CSIT and IT students
Java  For beginners and CSIT and IT studentsJava  For beginners and CSIT and IT students
Java For beginners and CSIT and IT students
Partnered Health
 
Revisão OCPJP7 - Class Design (parte 01)
Revisão OCPJP7 - Class Design (parte 01)Revisão OCPJP7 - Class Design (parte 01)
Revisão OCPJP7 - Class Design (parte 01)
Julio Cesar Nunes de Souza
 
Initiation the Java web application project in the Google App Engine
Initiation the Java web application project in the Google App EngineInitiation the Java web application project in the Google App Engine
Initiation the Java web application project in the Google App Engine
University of Economics in Katowice
 
1 2 java development
1 2 java development1 2 java development
1 2 java developmentKen Kretsch
 

Similar to Very basic java errors (20)

Core Java- An advanced review of features
Core Java- An advanced review of featuresCore Java- An advanced review of features
Core Java- An advanced review of features
 
Packaes & interfaces
Packaes & interfacesPackaes & interfaces
Packaes & interfaces
 
Core java introduction
Core java introduction Core java introduction
Core java introduction
 
2 jfh-yourveryfirstprogram
2  jfh-yourveryfirstprogram2  jfh-yourveryfirstprogram
2 jfh-yourveryfirstprogram
 
LausanneJUG 2017 - Jigsaw est prêt à tuer le classpath
LausanneJUG 2017 - Jigsaw est prêt à tuer le classpathLausanneJUG 2017 - Jigsaw est prêt à tuer le classpath
LausanneJUG 2017 - Jigsaw est prêt à tuer le classpath
 
File Handling.pptx
File Handling.pptxFile Handling.pptx
File Handling.pptx
 
Java Serialization
Java SerializationJava Serialization
Java Serialization
 
01slide
01slide01slide
01slide
 
01slide
01slide01slide
01slide
 
Basics of java 1
Basics of java 1Basics of java 1
Basics of java 1
 
Java
JavaJava
Java
 
PAGE 1Input output for a file tutorialStreams and File IOI.docx
PAGE  1Input output for a file tutorialStreams and File IOI.docxPAGE  1Input output for a file tutorialStreams and File IOI.docx
PAGE 1Input output for a file tutorialStreams and File IOI.docx
 
Unit2 java
Unit2 javaUnit2 java
Unit2 java
 
Java Hello program with output
Java Hello program with outputJava Hello program with output
Java Hello program with output
 
Javalecture 1
Javalecture 1Javalecture 1
Javalecture 1
 
Unit of competency
Unit of competencyUnit of competency
Unit of competency
 
Java For beginners and CSIT and IT students
Java  For beginners and CSIT and IT studentsJava  For beginners and CSIT and IT students
Java For beginners and CSIT and IT students
 
Revisão OCPJP7 - Class Design (parte 01)
Revisão OCPJP7 - Class Design (parte 01)Revisão OCPJP7 - Class Design (parte 01)
Revisão OCPJP7 - Class Design (parte 01)
 
Initiation the Java web application project in the Google App Engine
Initiation the Java web application project in the Google App EngineInitiation the Java web application project in the Google App Engine
Initiation the Java web application project in the Google App Engine
 
1 2 java development
1 2 java development1 2 java development
1 2 java development
 

More from Michael Scaman

Psalms book 1 class version.pdf
Psalms book 1 class version.pdfPsalms book 1 class version.pdf
Psalms book 1 class version.pdf
Michael Scaman
 
Unexpected Discord In The Psalms - Psalm 42 though 72 version 11 ppt pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72  version 11 ppt pdf.pdfUnexpected Discord In The Psalms - Psalm 42 though 72  version 11 ppt pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72 version 11 ppt pdf.pdf
Michael Scaman
 
Unexpected Discord In The Psalms - Psalm 1 though 41 version 10 ppt PDF.pdf
Unexpected Discord In The Psalms - Psalm 1 though 41  version 10  ppt PDF.pdfUnexpected Discord In The Psalms - Psalm 1 though 41  version 10  ppt PDF.pdf
Unexpected Discord In The Psalms - Psalm 1 though 41 version 10 ppt PDF.pdf
Michael Scaman
 
Unexpected Discord In The Psalms- book 5 - Psalm 107 though 150 version 8 p...
Unexpected Discord In The Psalms- book 5  - Psalm 107 though 150  version 8 p...Unexpected Discord In The Psalms- book 5  - Psalm 107 though 150  version 8 p...
Unexpected Discord In The Psalms- book 5 - Psalm 107 though 150 version 8 p...
Michael Scaman
 
Unexpected Discord In The Psalms- book 5 - Psalm 107 though 150 version 7 p...
Unexpected Discord In The Psalms- book 5  - Psalm 107 though 150  version 7 p...Unexpected Discord In The Psalms- book 5  - Psalm 107 though 150  version 7 p...
Unexpected Discord In The Psalms- book 5 - Psalm 107 though 150 version 7 p...
Michael Scaman
 
Unexpected Discord In The Psalms- book 5 - Psalm 107 though 150 version 6 p...
Unexpected Discord In The Psalms- book 5  - Psalm 107 though 150  version 6 p...Unexpected Discord In The Psalms- book 5  - Psalm 107 though 150  version 6 p...
Unexpected Discord In The Psalms- book 5 - Psalm 107 though 150 version 6 p...
Michael Scaman
 
Unexpected Discord In The Psalms- book 5 - Psalm 107 though 150 version 3 p...
Unexpected Discord In The Psalms- book 5  - Psalm 107 though 150  version 3 p...Unexpected Discord In The Psalms- book 5  - Psalm 107 though 150  version 3 p...
Unexpected Discord In The Psalms- book 5 - Psalm 107 though 150 version 3 p...
Michael Scaman
 
Unexpected Discord In The Psalms- book 4 - Psalm 90 though 106 version 7 pp...
Unexpected Discord In The Psalms- book 4  - Psalm 90 though 106  version 7 pp...Unexpected Discord In The Psalms- book 4  - Psalm 90 though 106  version 7 pp...
Unexpected Discord In The Psalms- book 4 - Psalm 90 though 106 version 7 pp...
Michael Scaman
 
Unexpected Discord In The Psalms- book 4 - Psalm 90 though 106 version 6 pp...
Unexpected Discord In The Psalms- book 4  - Psalm 90 though 106  version 6 pp...Unexpected Discord In The Psalms- book 4  - Psalm 90 though 106  version 6 pp...
Unexpected Discord In The Psalms- book 4 - Psalm 90 though 106 version 6 pp...
Michael Scaman
 
Unexpected Discord In The Psalms- book 4 - Psalm 90 though 106 version 4 pp...
Unexpected Discord In The Psalms- book 4  - Psalm 90 though 106  version 4 pp...Unexpected Discord In The Psalms- book 4  - Psalm 90 though 106  version 4 pp...
Unexpected Discord In The Psalms- book 4 - Psalm 90 though 106 version 4 pp...
Michael Scaman
 
Unexpected Discord In The Psalms - Psalm 42 though 72 version 11 ppt pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72  version 11 ppt pdf.pdfUnexpected Discord In The Psalms - Psalm 42 though 72  version 11 ppt pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72 version 11 ppt pdf.pdf
Michael Scaman
 
Unexpected Discord In The Psalms - Psalm 73 though 89 version 9 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89  version 9 ppt.pdfUnexpected Discord In The Psalms - Psalm 73 though 89  version 9 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89 version 9 ppt.pdf
Michael Scaman
 
Unexpected Discord In The Psalms - Psalm 73 though 89 version 8 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89  version 8 ppt.pdfUnexpected Discord In The Psalms - Psalm 73 though 89  version 8 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89 version 8 ppt.pdf
Michael Scaman
 
Unexpected Discord In The Psalms - Psalm 73 though 89 version 7 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89  version 7 ppt.pdfUnexpected Discord In The Psalms - Psalm 73 though 89  version 7 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89 version 7 ppt.pdf
Michael Scaman
 
Unexpected Discord In The Psalms - Psalm 73 though 89 version 5 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89  version 5 ppt.pdfUnexpected Discord In The Psalms - Psalm 73 though 89  version 5 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89 version 5 ppt.pdf
Michael Scaman
 
Unexpected Discord In The Psalms - Psalm 73 though 89 version 4 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89  version 4 ppt.pdfUnexpected Discord In The Psalms - Psalm 73 though 89  version 4 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89 version 4 ppt.pdf
Michael Scaman
 
Unexpected Discord In The Psalms - Psalm 42 though 72 version 11 ppt pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72  version 11 ppt pdf.pdfUnexpected Discord In The Psalms - Psalm 42 though 72  version 11 ppt pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72 version 11 ppt pdf.pdf
Michael Scaman
 
Unexpected Discord In The Psalms - Psalm 42 though 72 version 1 ppt pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72  version 1  ppt  pdf.pdfUnexpected Discord In The Psalms - Psalm 42 though 72  version 1  ppt  pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72 version 1 ppt pdf.pdf
Michael Scaman
 
Unexpected Discord In The Psalms - Psalm 42 though 72 version 8 ppt pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72  version 8 ppt pdf.pdfUnexpected Discord In The Psalms - Psalm 42 though 72  version 8 ppt pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72 version 8 ppt pdf.pdf
Michael Scaman
 
Unexpected Discord In The Psalms - Psalm 1 though 41 version 10 ppt PDF.pdf
Unexpected Discord In The Psalms - Psalm 1 though 41  version 10  ppt PDF.pdfUnexpected Discord In The Psalms - Psalm 1 though 41  version 10  ppt PDF.pdf
Unexpected Discord In The Psalms - Psalm 1 though 41 version 10 ppt PDF.pdf
Michael Scaman
 

More from Michael Scaman (20)

Psalms book 1 class version.pdf
Psalms book 1 class version.pdfPsalms book 1 class version.pdf
Psalms book 1 class version.pdf
 
Unexpected Discord In The Psalms - Psalm 42 though 72 version 11 ppt pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72  version 11 ppt pdf.pdfUnexpected Discord In The Psalms - Psalm 42 though 72  version 11 ppt pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72 version 11 ppt pdf.pdf
 
Unexpected Discord In The Psalms - Psalm 1 though 41 version 10 ppt PDF.pdf
Unexpected Discord In The Psalms - Psalm 1 though 41  version 10  ppt PDF.pdfUnexpected Discord In The Psalms - Psalm 1 though 41  version 10  ppt PDF.pdf
Unexpected Discord In The Psalms - Psalm 1 though 41 version 10 ppt PDF.pdf
 
Unexpected Discord In The Psalms- book 5 - Psalm 107 though 150 version 8 p...
Unexpected Discord In The Psalms- book 5  - Psalm 107 though 150  version 8 p...Unexpected Discord In The Psalms- book 5  - Psalm 107 though 150  version 8 p...
Unexpected Discord In The Psalms- book 5 - Psalm 107 though 150 version 8 p...
 
Unexpected Discord In The Psalms- book 5 - Psalm 107 though 150 version 7 p...
Unexpected Discord In The Psalms- book 5  - Psalm 107 though 150  version 7 p...Unexpected Discord In The Psalms- book 5  - Psalm 107 though 150  version 7 p...
Unexpected Discord In The Psalms- book 5 - Psalm 107 though 150 version 7 p...
 
Unexpected Discord In The Psalms- book 5 - Psalm 107 though 150 version 6 p...
Unexpected Discord In The Psalms- book 5  - Psalm 107 though 150  version 6 p...Unexpected Discord In The Psalms- book 5  - Psalm 107 though 150  version 6 p...
Unexpected Discord In The Psalms- book 5 - Psalm 107 though 150 version 6 p...
 
Unexpected Discord In The Psalms- book 5 - Psalm 107 though 150 version 3 p...
Unexpected Discord In The Psalms- book 5  - Psalm 107 though 150  version 3 p...Unexpected Discord In The Psalms- book 5  - Psalm 107 though 150  version 3 p...
Unexpected Discord In The Psalms- book 5 - Psalm 107 though 150 version 3 p...
 
Unexpected Discord In The Psalms- book 4 - Psalm 90 though 106 version 7 pp...
Unexpected Discord In The Psalms- book 4  - Psalm 90 though 106  version 7 pp...Unexpected Discord In The Psalms- book 4  - Psalm 90 though 106  version 7 pp...
Unexpected Discord In The Psalms- book 4 - Psalm 90 though 106 version 7 pp...
 
Unexpected Discord In The Psalms- book 4 - Psalm 90 though 106 version 6 pp...
Unexpected Discord In The Psalms- book 4  - Psalm 90 though 106  version 6 pp...Unexpected Discord In The Psalms- book 4  - Psalm 90 though 106  version 6 pp...
Unexpected Discord In The Psalms- book 4 - Psalm 90 though 106 version 6 pp...
 
Unexpected Discord In The Psalms- book 4 - Psalm 90 though 106 version 4 pp...
Unexpected Discord In The Psalms- book 4  - Psalm 90 though 106  version 4 pp...Unexpected Discord In The Psalms- book 4  - Psalm 90 though 106  version 4 pp...
Unexpected Discord In The Psalms- book 4 - Psalm 90 though 106 version 4 pp...
 
Unexpected Discord In The Psalms - Psalm 42 though 72 version 11 ppt pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72  version 11 ppt pdf.pdfUnexpected Discord In The Psalms - Psalm 42 though 72  version 11 ppt pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72 version 11 ppt pdf.pdf
 
Unexpected Discord In The Psalms - Psalm 73 though 89 version 9 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89  version 9 ppt.pdfUnexpected Discord In The Psalms - Psalm 73 though 89  version 9 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89 version 9 ppt.pdf
 
Unexpected Discord In The Psalms - Psalm 73 though 89 version 8 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89  version 8 ppt.pdfUnexpected Discord In The Psalms - Psalm 73 though 89  version 8 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89 version 8 ppt.pdf
 
Unexpected Discord In The Psalms - Psalm 73 though 89 version 7 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89  version 7 ppt.pdfUnexpected Discord In The Psalms - Psalm 73 though 89  version 7 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89 version 7 ppt.pdf
 
Unexpected Discord In The Psalms - Psalm 73 though 89 version 5 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89  version 5 ppt.pdfUnexpected Discord In The Psalms - Psalm 73 though 89  version 5 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89 version 5 ppt.pdf
 
Unexpected Discord In The Psalms - Psalm 73 though 89 version 4 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89  version 4 ppt.pdfUnexpected Discord In The Psalms - Psalm 73 though 89  version 4 ppt.pdf
Unexpected Discord In The Psalms - Psalm 73 though 89 version 4 ppt.pdf
 
Unexpected Discord In The Psalms - Psalm 42 though 72 version 11 ppt pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72  version 11 ppt pdf.pdfUnexpected Discord In The Psalms - Psalm 42 though 72  version 11 ppt pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72 version 11 ppt pdf.pdf
 
Unexpected Discord In The Psalms - Psalm 42 though 72 version 1 ppt pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72  version 1  ppt  pdf.pdfUnexpected Discord In The Psalms - Psalm 42 though 72  version 1  ppt  pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72 version 1 ppt pdf.pdf
 
Unexpected Discord In The Psalms - Psalm 42 though 72 version 8 ppt pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72  version 8 ppt pdf.pdfUnexpected Discord In The Psalms - Psalm 42 though 72  version 8 ppt pdf.pdf
Unexpected Discord In The Psalms - Psalm 42 though 72 version 8 ppt pdf.pdf
 
Unexpected Discord In The Psalms - Psalm 1 though 41 version 10 ppt PDF.pdf
Unexpected Discord In The Psalms - Psalm 1 though 41  version 10  ppt PDF.pdfUnexpected Discord In The Psalms - Psalm 1 though 41  version 10  ppt PDF.pdf
Unexpected Discord In The Psalms - Psalm 1 though 41 version 10 ppt PDF.pdf
 

Recently uploaded

A Sighting of filterA in Typelevel Rite of Passage
A Sighting of filterA in Typelevel Rite of PassageA Sighting of filterA in Typelevel Rite of Passage
A Sighting of filterA in Typelevel Rite of Passage
Philip Schwarz
 
Vitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume MontevideoVitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume Montevideo
Vitthal Shirke
 
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoamOpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
takuyayamamoto1800
 
Providing Globus Services to Users of JASMIN for Environmental Data Analysis
Providing Globus Services to Users of JASMIN for Environmental Data AnalysisProviding Globus Services to Users of JASMIN for Environmental Data Analysis
Providing Globus Services to Users of JASMIN for Environmental Data Analysis
Globus
 
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Globus
 
May Marketo Masterclass, London MUG May 22 2024.pdf
May Marketo Masterclass, London MUG May 22 2024.pdfMay Marketo Masterclass, London MUG May 22 2024.pdf
May Marketo Masterclass, London MUG May 22 2024.pdf
Adele Miller
 
Prosigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology SolutionsProsigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology Solutions
Prosigns
 
Utilocate provides Smarter, Better, Faster, Safer Locate Ticket Management
Utilocate provides Smarter, Better, Faster, Safer Locate Ticket ManagementUtilocate provides Smarter, Better, Faster, Safer Locate Ticket Management
Utilocate provides Smarter, Better, Faster, Safer Locate Ticket Management
Utilocate
 
Large Language Models and the End of Programming
Large Language Models and the End of ProgrammingLarge Language Models and the End of Programming
Large Language Models and the End of Programming
Matt Welsh
 
Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...
Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...
Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...
Shahin Sheidaei
 
Vitthal Shirke Java Microservices Resume.pdf
Vitthal Shirke Java Microservices Resume.pdfVitthal Shirke Java Microservices Resume.pdf
Vitthal Shirke Java Microservices Resume.pdf
Vitthal Shirke
 
Text-Summarization-of-Breaking-News-Using-Fine-tuning-BART-Model.pptx
Text-Summarization-of-Breaking-News-Using-Fine-tuning-BART-Model.pptxText-Summarization-of-Breaking-News-Using-Fine-tuning-BART-Model.pptx
Text-Summarization-of-Breaking-News-Using-Fine-tuning-BART-Model.pptx
ShamsuddeenMuhammadA
 
Globus Connect Server Deep Dive - GlobusWorld 2024
Globus Connect Server Deep Dive - GlobusWorld 2024Globus Connect Server Deep Dive - GlobusWorld 2024
Globus Connect Server Deep Dive - GlobusWorld 2024
Globus
 
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
Juraj Vysvader
 
Understanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSageUnderstanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSage
Globus
 
GlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote sessionGlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote session
Globus
 
Pro Unity Game Development with C-sharp Book
Pro Unity Game Development with C-sharp BookPro Unity Game Development with C-sharp Book
Pro Unity Game Development with C-sharp Book
abdulrafaychaudhry
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 
Enterprise Software Development with No Code Solutions.pptx
Enterprise Software Development with No Code Solutions.pptxEnterprise Software Development with No Code Solutions.pptx
Enterprise Software Development with No Code Solutions.pptx
QuickwayInfoSystems3
 
Cyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdfCyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdf
Cyanic lab
 

Recently uploaded (20)

A Sighting of filterA in Typelevel Rite of Passage
A Sighting of filterA in Typelevel Rite of PassageA Sighting of filterA in Typelevel Rite of Passage
A Sighting of filterA in Typelevel Rite of Passage
 
Vitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume MontevideoVitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume Montevideo
 
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoamOpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
 
Providing Globus Services to Users of JASMIN for Environmental Data Analysis
Providing Globus Services to Users of JASMIN for Environmental Data AnalysisProviding Globus Services to Users of JASMIN for Environmental Data Analysis
Providing Globus Services to Users of JASMIN for Environmental Data Analysis
 
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
 
May Marketo Masterclass, London MUG May 22 2024.pdf
May Marketo Masterclass, London MUG May 22 2024.pdfMay Marketo Masterclass, London MUG May 22 2024.pdf
May Marketo Masterclass, London MUG May 22 2024.pdf
 
Prosigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology SolutionsProsigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology Solutions
 
Utilocate provides Smarter, Better, Faster, Safer Locate Ticket Management
Utilocate provides Smarter, Better, Faster, Safer Locate Ticket ManagementUtilocate provides Smarter, Better, Faster, Safer Locate Ticket Management
Utilocate provides Smarter, Better, Faster, Safer Locate Ticket Management
 
Large Language Models and the End of Programming
Large Language Models and the End of ProgrammingLarge Language Models and the End of Programming
Large Language Models and the End of Programming
 
Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...
Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...
Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...
 
Vitthal Shirke Java Microservices Resume.pdf
Vitthal Shirke Java Microservices Resume.pdfVitthal Shirke Java Microservices Resume.pdf
Vitthal Shirke Java Microservices Resume.pdf
 
Text-Summarization-of-Breaking-News-Using-Fine-tuning-BART-Model.pptx
Text-Summarization-of-Breaking-News-Using-Fine-tuning-BART-Model.pptxText-Summarization-of-Breaking-News-Using-Fine-tuning-BART-Model.pptx
Text-Summarization-of-Breaking-News-Using-Fine-tuning-BART-Model.pptx
 
Globus Connect Server Deep Dive - GlobusWorld 2024
Globus Connect Server Deep Dive - GlobusWorld 2024Globus Connect Server Deep Dive - GlobusWorld 2024
Globus Connect Server Deep Dive - GlobusWorld 2024
 
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
 
Understanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSageUnderstanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSage
 
GlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote sessionGlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote session
 
Pro Unity Game Development with C-sharp Book
Pro Unity Game Development with C-sharp BookPro Unity Game Development with C-sharp Book
Pro Unity Game Development with C-sharp Book
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 
Enterprise Software Development with No Code Solutions.pptx
Enterprise Software Development with No Code Solutions.pptxEnterprise Software Development with No Code Solutions.pptx
Enterprise Software Development with No Code Solutions.pptx
 
Cyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdfCyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdf
 

Very basic java errors

  • 2. class Main { public static void main(String[] args) { System.out.println("Howdy, world!") } } javac -classpath .:/run_dir/junit-4.12.jar:target/dependency/* -d . Main.java Main.java:1: error: reached end of file while parsing z ^ 1 error compiler exit status 1 What went wrong?
  • 3. class Main { public static void main(String[] args) { System.out.println("Howdy, world!”); } } Missing semicolon the program continued to the end of file looking for the semicolon
  • 4. What could go wrong? class Main { static void main(String[] args) { System.out.println("Howdy, world!”); } } java -classpath .:/run_dir/junit-4.12.jar:target/dependency/ * Main Error: Main method not found in class Main, please define the main method as: public static void main(String[] args) or a JavaFX application class must extend javafx.application.Application exit status 1
  • 5. Forgot Public main method must be accessible class Main { public static void main(String[] args) { System.out.println("Howdy, world!”); } }
  • 6. class Main { public static void main(String[] vars) { } } Whats wrong here?
  • 7. class Main { public static void main(String[] vars) { // empty but that compiles } } Nothing args (or vars) are dummy names can be any legal name
  • 8. class Main { public void main(String[] args) { System.out.println("Howdy, world!") } } What went wrong?
  • 9. class Main { public static void main(String[] args) { System.out.println("Howdy, world!") } } The starting method main must be static (so it is there from the start)
  • 10. But, if you get it all correct… will it fetch the bone!!! or is something wrong? YES OK sq brackets[ ] required for string array Curly brackets in correct place and matching match match
  • 12. Basic Java Errors Hello? No Whirl? #&!fin’