簡體   English   中英

變量不改變價值

[英]Variable is not changing value

因此,我正在設計一種代碼,它將使用戶能夠創建偽定制操作,可以在特殊的eval()函數下使用它(因為JavaScript 不是可擴展語言)。 我的問題是,只有第一個創建的變量似乎在注冊和評估。

我在這里發布了一大段代碼。

var CMD = function(){
    var objs = gAO() /* gets all of the objects */;
    // testing for other instances of the CMD object.
    this .bool = 0;
    for(obj in objs) this .bool ^= !objs[obj]["_aqz39"] // boolean
    if(this .bool){
        // DEFINING VARS
        this .objs = objs;
        this["_aqz39"] = true;
        this .ops = []; this .eqs = [];
    }
}
{ /* init */
    var cmd = new CMD();
}

// USER INPUT FOR CREATING 'NEW VARIABLES'
var Operator = function(op,input){
    // SYNTAX: "<operator>","x <operator> y = <result, using 'x' and 'y'>"
    // EXAMPLE: "#","x # y = 3 * x - y"
    this .op =  op;
    this .eq = input.split("=")[1].trim();
}


// FUNCTION FOR ACTIVATING THE VARIABLE TO BE
// ...RECOGNIZED BY THE CMD's 'EVAL' FUNCTION
activate = function(ind){
    cmd.ops.push(ind.op);
    cmd.eqs.push(ind.eq);
}

CMD.prototype.eval = function(equ){
    // DECLARING VARS
    var t = cmd,oper,equation,x,y,i=0;
    // LOOPS THROUGH ALL OF THE CHILDREN OF cmd.ops
    while (i < t["ops"].length){
        // CHECKS TO SEE IF THE INPUT CONTAINS THE SYMBOL
        if(equ.search(oper) !== -1){
                // the operator
                oper = t["ops"][i];
                // the equation
                equation = t["eqs"][i];
                // from the first index to the beginning of the operator
                x = equ.slice(0,equ.search(oper)).trim(),
                // from right after the operator to the end of the thing
                y = equ.slice(equ.search(oper)+1,equ.length).trim();
                /* INFORMATION LOGGING */
                console.log({x:x,y:y,oper:oper,equation:equation,i:i,t:t,bool: equ.search(oper),len:t["ops"].length})
            // RESULT
            return eval(eval(equation));
        }
        // INCREMENTS 'i'
        i++;
    }
    // ELSE
    return false;
}

測試#1

var hash = new Operator("#","x # y = 3 * x - y");
var dash = new Operator("q","x q y = y");

activate(dash);
activate(hash);

console.log(cmd.eval("3 q -2")); // RETURNS -2
console.log(cmd.eval("3 # -2")); // RETURNS NOTHING

測試#2

var hash = new Operator("#","x # y = 3 * x - y");
var dash = new Operator("q","x q y = y");

activate(hash); // HASH IS CALLED FIRST THIS TIME
activate(dash);

console.log(cmd.eval("3 q -2")); // RETURNS NaN
console.log(cmd.eval("3 # -2")); // RETURNS 11

我已經對這個問題進行了大約一個小時的故障排除,但我不知道出了什么問題。 非常感謝您的幫助。

在這里,您在給變量賦值之前使用變量oper

if(equ.search(oper) !== -1){
  oper = t["ops"][i];

未定義的值將轉換為空的正則表達式,因此它將始終返回匹配項,這就是第一個運算符起作用的原因。 在下一次迭代中,將為變量分配錯誤的運算符。

在使用它查找運算符之前,先為其分配運算符:

oper = t["ops"][i];
if(equ.search(oper) !== -1){

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM