- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为中缀表示法编写一个解析器。在 if 语句中我声明了变量 newchild。否则我希望它抛出异常。但是当我超出范围时,编译器不再知道该变量。我无法在 if 语句之前声明它,因为根据我们所处的情况,该变量被分配了不同的数据类型。
我可以做什么来解决这个问题?
public class ParserForInfixNotation {
public Node parse(List<String> tokenList) {
Stack<String> myStack = new Stack<String>();
int i =1;
while(i <= tokenList.size()){ //wir gehen alle Eintraege in der Liste durch
if(Character.isDigit(tokenList.get(i).charAt(1))){
int value = Integer.parseInt(tokenList.get(i)); //falls der Eintrag eine Zahl ist, wird ein neuer Leaf erstellt
Leaf res = new Leaf(value);
}
else if(tokenList.get(i) == "("){ // falls der Eintrag eine Klammer ist, wird geschaut, ob in der Klammer ein Unary oder Binary OpNode definiert ist
if (tokenList.get(i+1) == "-") {
// Fall Unary
int j = i+1;
//am Liebsten ein rekursiver Aufruf auf parser mit nem TeilString des Oberen Strings, der genau den naechsten Node beschreibt
int anzahlklammern = 0;
boolean end = false;
if((Character.isDigit(tokenList.get(j).charAt(1))) || (tokenList.get(j+1) == ")")){
Leaf newchild = new Leaf(Integer.parseInt(tokenList.get(j)));
}
else if(tokenList.get(j) == "("){
while(!end){
if(tokenList.get(j) == ")" && anzahlklammern == 1){
end = true;
}
else if(tokenList.get(j) == ")" && j > i+3){ //die Klammer muss mindestens 2 Stellen enthalten
anzahlklammern--;
j++;
}
else if(tokenList.get(j) == "("){
anzahlklammern++;
j++;
}
else if ((Character.isDigit(tokenList.get(j).charAt(1))) || tokenList.get(j) == "+" || tokenList.get(j) == "*" || tokenList.get(j) == "-"){
j++;
}
else{
throw new IllegalArgumentException();
}
}
List<String> neu = new ArrayList<>();
for (int l = i+2; l<j;l++){
neu.add(tokenList.get(l));
}
Node newchild = parse(neu);
}
else {
throw new IllegalArgumentException();
}
UnaryOpNode res = new UnaryOpNode('-',newchild);
}
else if((tokenList.get(i+1) == "(") || (Character.isDigit(tokenList.get(i+1).charAt(1)))){ //Fall Binary
if (Character.isDigit(tokenList.get(i+1).charAt(1)) && (tokenList.get(i+2) == "+" || tokenList.get(i+2) == "*")){
Leaf newchildleft = new Leaf(Integer.parseInt(tokenList.get(i+1)));
if(tokenList.get(i+2) == "+"){
Character operator = '+';
}
else if(tokenList.get(i+2) == "*"){
Character operator = '*';
}
int j = i+3;
if(Character.isDigit(tokenList.get(j).charAt(1))){
Leaf newchildright = new Leaf(Integer.parseInt(tokenList.get(j)));
}
else if(tokenList.get(j) == "("){
boolean end = false;
int anzahlklammern =0 ;
while(!end){
if(tokenList.get(j) == ")" && anzahlklammern == 1){
end = true;
}
else if(tokenList.get(j) == ")" && j > i+5){ //die Klammer muss mindestens 2 Stellen enthalten
anzahlklammern--;
j++;
}
else if(tokenList.get(j) == "("){
anzahlklammern++;
j++;
}
else if ((Character.isDigit(tokenList.get(j).charAt(1))) || tokenList.get(j) == "+" || tokenList.get(j) == "*" || tokenList.get(j) == "-"){
j++;
}
else{
throw new IllegalArgumentException();
}
}
List<String> neu = new ArrayList<>();
for (int l = i+4; l<j;l++){
neu.add(tokenList.get(l));
}
Node newrightchild = parse(neu);
}
else{
throw new IllegalArgumentException();
}
}
else if(tokenList.get(i+1) == "("){
int j= i+1;
boolean end = false;
int anzahlklammern =0 ;
while(!end){
if(tokenList.get(j) == ")" && anzahlklammern == 1){
end = true;
}
else if(tokenList.get(j) == ")" && j > i+3){ //die Klammer muss mindestens 2 Stellen enthalten
anzahlklammern--;
j++;
}
else if(tokenList.get(j) == "("){
anzahlklammern++;
j++;
}
else if ((Character.isDigit(tokenList.get(j).charAt(1))) || tokenList.get(j) == "+" || tokenList.get(j) == "*" || tokenList.get(j) == "-"){
j++;
}
else{
throw new IllegalArgumentException();
}
}
List<String> neu = new ArrayList<>();
for (int l = i+2; l<j;l++){
neu.add(tokenList.get(l));
}
Node newleftchild = parse(neu);
if(tokenList.get(j+1) == "+"){
Character operator = '+';
}
else if(tokenList.get(j+1) == "*"){
Character operator = '*';
}
else{
throw new IllegalArgumentException();
}
if(tokenList.get(j+2)== "("){
int k= j+3;
end = false;
anzahlklammern =0 ;
while(!end){
if(tokenList.get(k) == ")" && anzahlklammern == 1){
end = true;
}
else if(tokenList.get(k) == ")" && k > j+5){ //die Klammer muss mindestens 2 Stellen enthalten
anzahlklammern--;
k++;
}
else if(tokenList.get(k) == "("){
anzahlklammern++;
k++;
}
else if ((Character.isDigit(tokenList.get(k).charAt(1))) || tokenList.get(k) == "+" || tokenList.get(k) == "*" || tokenList.get(k) == "-"){
k++;
}
else{
throw new IllegalArgumentException();
}
}
List<String> neu2 = new ArrayList<>();
for (int l = j+4; l<k;l++){
neu.add(tokenList.get(l));
}
Node newrightchild = parse(neu2);
}
else if(Character.isDigit(tokenList.get(j+2).charAt(1))){
Leaf newrightchild = new Leaf(Integer.parseInt(tokenList.get(j+2)));
}
else{
throw new IllegalArgumentException();
}
}
BinaryOpNode res = new BinaryOpNode(operator, newleftchild, newrightchild);
}
else{
throw new IllegalArgumentException();
}
}
else{
throw new IllegalArgumentException();
}
}
return res;
}
最佳答案
这是关于范围的。变量的作用域是声明它的 block 以及其中的 block 。该 block 是 if
语句的 block 、其他语句的 block ,还是只是为了定义范围而放置在那里的 block 并不重要。
您正在经历以下情况:
{
Leaf leaf = new Leaf();
}
doSomethingWith(leaf); // compiler error - there is no `leaf` in this scope.
您可以通过以下方式修复它:
Leaf leaf;
{
leaf = new Leaf();
}
doSomethingWith(leaf);
如果对 leaf
的赋值有可能不会发生——例如,如果它位于 if
block 中,那么您将收到编译器错误说变量叶可能尚未初始化
。您可以通过首先初始化一些后备值来解决此问题。它通常为空:
Leaf leaf = null;
if(...) {
leaf = new Leaf();
}
doSomethingWith(leaf);
但是现在您的代码必须应对 leaf == null
的可能性 - 这会导致代码过于复杂或脆弱。找到避免分配 null 的方法,或者如果不能的话,隔离易受攻击的代码块,以便该范围之外的任何内容都不需要处理 null 变量的可能性。
关于java - 在if语句中创建对象并稍后使用它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43916354/
我的一位教授给了我们一些考试练习题,其中一个问题类似于下面(伪代码): a.setColor(blue); b.setColor(red); a = b; b.setColor(purple); b
我似乎经常使用这个测试 if( object && object !== "null" && object !== "undefined" ){ doSomething(); } 在对象上,我
C# Object/object 是值类型还是引用类型? 我检查过它们可以保留引用,但是这个引用不能用于更改对象。 using System; class MyClass { public s
我在通过 AJAX 发送 json 时遇到问题。 var data = [{"name": "Will", "surname": "Smith", "age": "40"},{"name": "Wil
当我尝试访问我的 View 中的对象 {{result}} 时(我从 Express js 服务器发送该对象),它只显示 [object][object]有谁知道如何获取 JSON 格式的值吗? 这是
我有不同类型的数据(可能是字符串、整数......)。这是一个简单的例子: public static void main(String[] args) { before("one"); }
嗨,我是 json 和 javascript 的新手。 我在这个网站找到了使用json数据作为表格的方法。 我很好奇为什么当我尝试使用 json 数据作为表时,我得到 [Object,Object]
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我听别人说 null == object 比 object == null check 例如: void m1(Object obj ) { if(null == obj) // Is thi
Match 对象 提供了对正则表达式匹配的只读属性的访问。 说明 Match 对象只能通过 RegExp 对象的 Execute 方法来创建,该方法实际上返回了 Match 对象的集合。所有的
Class 对象 使用 Class 语句创建的对象。提供了对类的各种事件的访问。 说明 不允许显式地将一个变量声明为 Class 类型。在 VBScript 的上下文中,“类对象”一词指的是用
Folder 对象 提供对文件夹所有属性的访问。 说明 以下代码举例说明如何获得 Folder 对象并查看它的属性: Function ShowDateCreated(f
File 对象 提供对文件的所有属性的访问。 说明 以下代码举例说明如何获得一个 File 对象并查看它的属性: Function ShowDateCreated(fil
Drive 对象 提供对磁盘驱动器或网络共享的属性的访问。 说明 以下代码举例说明如何使用 Drive 对象访问驱动器的属性: Function ShowFreeSpac
FileSystemObject 对象 提供对计算机文件系统的访问。 说明 以下代码举例说明如何使用 FileSystemObject 对象返回一个 TextStream 对象,此对象可以被读
我是 javascript OOP 的新手,我认为这是一个相对基本的问题,但我无法通过搜索网络找到任何帮助。我是否遗漏了什么,或者我只是以错误的方式解决了这个问题? 这是我的示例代码: functio
我可以很容易地创造出很多不同的对象。例如像这样: var myObject = { myFunction: function () { return ""; } };
function Person(fname, lname) { this.fname = fname, this.lname = lname, this.getName = function()
任何人都可以向我解释为什么下面的代码给出 (object, Object) 吗? (console.log(dope) 给出了它应该的内容,但在 JSON.stringify 和 JSON.parse
我正在尝试完成散点图 exercise来自免费代码营。然而,我现在只自己学习了 d3 几个小时,在遵循 lynda.com 的教程后,我一直在尝试确定如何在工具提示中显示特定数据。 This code
我是一名优秀的程序员,十分优秀!