D语言类析构函数

import std.stdio;

class Line { 
   public: 
      this() { 
         writeln("Object is being created"); 
      }

      ~this() { 
         writeln("Object is being deleted"); 
      } 

      void setLength( double len ) { 
         length = len; 
      } 

      double getLength() { 
         return length; 
      }

   private: 
      double length; 
}

// Main function for the program 
void main( ) { 
   Line line = new Line(); 

   // set line length 
   line.setLength(6.0); 
   writeln("Length of line : ", line.getLength()); 
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266055.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论