javascript - 使用简单反射代理的流行 'vaccumCleaner' 玩具问题解决方案

标签 javascript artificial-intelligence undefined p5.js agent

我是理学士学位的学生,正在学习“人工智能”。

这是一个简单的反射代理程序,它在“Python”上运行,但我也在 p5.js (JavaScript) 上尝试过同样的事情来制作 UI。

但是我收到了这个错误,谁能告诉我为什么 this.currentRoom 没有得到 this.room1?

I'm adding error screenshot over here

或者您可以复制它并在在线编辑器上了解实际情况。

抱歉,如果我问得不好,实际上这是我第一次在 stackoverflow 上问。

function setup(){
   createCanvas(600,400);
    vc = new VAgent();
    twoRooms = new VEnvironment(vc);
    twoRooms.executeStep(6);

}
function draw(){
    background(0);
}

class Room{
    constructor(location,status){
        this.location=location;
        this.status=status;
    }
    getAll(){
        console.log(this.location);
        console.log(this.status);
    }
}

class VEnvironment{
    contructor(agent){
        this.agent=agent;
        this.room1=new Room('a','Dirty');
        this.room2=new Room('b','Dirty');
        this.currentRoom=this.room1;
        this.actionStatus='';
        this.step=0;

    }

    executeStep(n){
        for(var i=0;i<n;i++){
            this.displayPerception();
            this.agent.sense(this);
            var res = this.agent.action();
            if(res=='clean'){
               this.currentRoom.status=='clean'
            }else if(res=='Right'){
               this.currentRoom=this.room2;
            }else{
                this.currentRoom=this.room1;
            }
            this.displayAction();
            this.step++;
        }
    }
    displayPerception(){
        console.log('Agent is Present At Room '+this.currentRoom.location+' And The Status For Room Is '+this.currentRoom.status);
    }
    displayAction(){
        console.log('Agent took at'+this.step+' And Action was ... '+this.currentRoom+'...');
    }
}


class VAgent{
    constructor(){

    }

    sense(currentEnv){
        this.en=currentEnv;
    }
    action(){
        if(this.en.currentRoom.status=='dirty'){
           return 'Clean'
        }else if(this.en.currentRoom.location=='a'){
           return 'Left'
        }else{
            return 'Right'
        }
    }
}

最佳答案

当你有一段你不理解的复杂代码时,你能做的最好的事情就是将你的问题缩小到 simplified example program .

例如,您可以将问题隔离到以下代码中:

function setup() {
  createCanvas(600, 400);

  const myContainer = new Container();
  myContainer.displayValue();
}

function draw() {
  background(0);
}

class Value {
  constructor() {
    this.x = 42;
  }
}

class Container {
  contructor() {
    this.value = new Value();
    this.currentvalue = this.value;
    console.log('constructor value: ' + this.currentValue);
  }

  displayValue() {
    console.log('display value: ' + this.value.x);
  }
}

此代码表现出与您的代码相同的问题,没有任何与您的问题无关的额外代码。

如果运行此代码,您会注意到构造函数值打印语句永远不会被触发。这是更仔细地研究构造函数的线索。

您的问题是一个拼写错误:您有 constructor 而不是 constructor

关于javascript - 使用简单反射代理的流行 'vaccumCleaner' 玩具问题解决方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58422589/

相关文章:

javascript - 输出一个值到html多个类javascript

javascript - 有没有办法在 Javascript 中将 Blob 图像类型转换为 File 类型?

javascript - 无法获取回调中设置的值

machine-learning - 为什么神经网络的权重应该初始化为随机数?

machine-learning - 强化学习: The dilemma of choosing discretization steps and performance metrics for continuous action and continuous state space

javascript - 无法读取未定义的属性 setState

javascript - 当我点击标签时,提示生成结果

machine-learning - 神经网络 - 如何最好地处理可变数量的输入

Javascript document.getElement insideHTML 未定义

javascript - IE9 Javascript 错误::未定义/空