我的程序符合但不打印任何内容

时间:2017-02-17 03:39:10

标签: java

我正在编写此程序,检查{ [ ( " /*是否与} ] {{ {1}} ) "我们需要忽略评论块中的内容。当我在终端中运行我的代码时,我遇到了一个问题,没有打印出来。我知道错误在哪里,但我不知道为什么它是错的。在我尝试编写忽略注释的代码之后,我开始遇到这个奇怪的问题。我们需要编写自己的名为MyStack.java的堆栈类,但它非常简单,所以我不会在这里包含。

我认为问题发生在这里:

*/

以下是整个代码:我希望没有任何逻辑谬误

int start = str.indexOf("/*");
int end = str.indexOf("*/");
if(start != -1){
  str = str.substring(0,start) + str.substring(end+2);

这里我包含一个示例输入文件:

import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;


public class SymbolBalance {

    public static void main(String[] args){
        if(args.length>0){
            try{
                Scanner input = new Scanner(new File (args[0]));
                MyStack<Character> ms = new MyStack<>();
                String str;
                char ch;
                boolean quoteStart = true;
                loop: while(input.hasNext()){
                    str = input.next();
                    int start = str.indexOf("/*");
                    int end = str.indexOf("/*");
                    if(start != -1){
                      str = str.substring(0,start) + str.substring(end+2);
                        for(int i=0;i<str.length();i++){
                        ch = str.charAt(i);      
                            if(ch == '{'||ch =='(' || ch=='[')     
                                {
                               ms.push(ch);
                                }
                            else if((ch == '/'&&i<str.length() -1&&str.charAt(i+1)=='*')){
                                ms.push(str.charAt(i+1));
                            }

                            else if (ch==')'){
                                if(ms.isEmpty()||ms.pop()!= '('){
                                   System.out.println(") is mismatched");
                                   break loop;
                                }
                            }
                           else if(ch == ']'){
                                if(ms.isEmpty() || ms.pop() != '['){
                                    System.out.println("] is mismatched");
                                    break loop;
                                }      
                           }
                            else if(ch == '}'){
                                if(ms.isEmpty() || ms.pop() != '{'){
                                    System.out.println("} is mismatched");
                                    break loop;
                                }
                            }
                            else if(ch == '*' && i<str.length()-1&&str.charAt(i+1) == '/'){
                                if(ms.isEmpty() || ms.pop() != '*'){
                                    System.out.println("*/ is mismatched");
                                    break loop;
                                }   
                            }
                           else if(ch == '"'){
                                if(quoteStart == true) {
                                    ms.push(ch);
                                    quoteStart = false;
                               }
                                else {
                                    if(ms.isEmpty() || ms.pop() != '"'){
                                        System.out.println(" \" is mismatched");  
                                        break loop;
                                    }
                                    quoteStart = true;
                                }
                            }  
                       }
                    }
                }
                input.close();
            }
            catch(FileNotFoundException e){
                   System.out.println("Cannot find file");
            }

        }
        else{
               System.out.println("No command line argument");
        }
    }

}

1 个答案:

答案 0 :(得分:2)

您在评论的开头和结尾都使用相同的字符:

    int start = str.indexOf("/*");
    int end = str.indexOf("/*");

结束注释字符串应为:

    int end = str.indexOf("*/");