跳转到内容

编程科学/SwayPresentations/对象/Examples2

来自维基教科书,开放世界,开放书籍

例子

各个方面怎么样?

这是一个堆栈

   function stack()
       {
       var store = :null;
       
       function push(item)
           {
           store = cons(item,store);
           item;
           }
       function pop()
           {
           var item = car(store);
           store = cdr(store);
           item;
           }
       function empty?()
           {
           store == :null;
           }
       this;
       }
   

下一页 上一页 顶部

华夏公益教科书