Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In most programming languages, the compiler carries a preprocessing step to determine if certain statements will compile. For instance it may check to see if

In most programming languages, the compiler carries a preprocessing step to determine if certain statements will compile. For instance it may check to see if parentheses match.

Write a Java program that simulates the actions of a preprocessor, to detect if certain Java constructs are syntactically correct. Table 1 shows the types of Java statement formats under consideration, and also example of each statement.

Table 1

Format Example

Statement data_type = expression int x = 3 + (10 4) * ( 10 + 4)

Method rt name() public void display(int n)

{ {

int arr[ ] = new int[n];

} System.out.println( x[2] );

}

Class class Name public class MyParser

{ {

dt fields; public static void main(String [ ] arg)

Name() {

{ display (10);

method(); }

} static void display(int x)

{

{ /*

} My pre-processor

*/

}

}

Table 2 shows the delimiters under consideration.

Table 2

Delimiters Symbol

Left parenthesis (

Right parenthesis )

Left curly braces {

Right curly braces }

Left square brackets [

Right square brackets ]

Forward slash /

Star (multiplication symbol) *

Note: In your implementation, design a class called Preprocessor that accepts a file that represents the program to be analyzed. The class will contain, among other possible methods, a method that determines whether or not the statement in the file are valid, with respect to the delimiters of Table 2. Do not be concerned with other symbols.

1. You will need a test class. You may want to name it MyPreprocessor.

2. You may have to enter all statements on a single line, unless you will be reading the input from a file, in which case the file would be read using presumable the class BufferedReader or LineNumberReader.

3. Your output would echo the input, and say whether or not the input passed the preprocessing stage.

4. You are to use the concept of stack to determine if the constructs are syntactically correct.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle Database Administration The Essential Reference

Authors: Brian Laskey, David Kreines

1st Edition

1565925165, 978-1565925168

More Books

Students also viewed these Databases questions

Question

What is Selenium? What are the advantages of Selenium?

Answered: 1 week ago

Question

Explain the various collection policies in receivables management.

Answered: 1 week ago

Question

What are the main objectives of Inventory ?

Answered: 1 week ago

Question

Advance warning and an explanation for the layoff.

Answered: 1 week ago