入口
DefaultJSONParser(final Object input, final JSONLexer lexer, final ParserConfig config)构造函数
条件
输入的字符串以"//"开始
结果
抛出java.lang.StringIndexOutOfBoundsException异常
死循环位置
JSONLexerBase.skipCommentif (ch == '/') { for (;;) { next(); if (ch == '\n') { next(); return; } } }
2条答案
按热度按时间6ljaweal1#
请提供重现问题的case
bttbmeg02#
JSON.parse("//123456");