subject

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.

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 06:30
On early television stations, what typically filled the screen from around 11pm until 6am? test dummies test patterns tests testing colors
Answers: 1
question
Computers and Technology, 23.06.2019 07:10
If you want to import a picture into a dtp application, what must you do first? draw an image frame. import text. open the folder containing the file. select get image… from the windows menu.
Answers: 2
question
Computers and Technology, 23.06.2019 13:30
Spoons are designed to be used for: spring hammering. applying body filler. identifying high and low spots. sanding highly formed areas.
Answers: 3
question
Computers and Technology, 23.06.2019 22:50
What is an rss reader used for? for creating a user account on a social new site
Answers: 2
You know the right answer?
In most programming languages, the compiler carries a preprocessing step to determine if certain sta...
Questions
question
History, 11.10.2020 22:01
question
Mathematics, 11.10.2020 22:01
question
Social Studies, 11.10.2020 22:01
question
Mathematics, 11.10.2020 22:01
question
Physics, 11.10.2020 22:01
question
History, 11.10.2020 22:01
Questions on the website: 13722360