PHP

class Test {
	private $name;
	private $age;
	public function __construct($array) {
		$this->name = $array['name'];
		$this->age = $array['age'];
	}
	
	public function getName() {
		return $this->name;
	}
	
	public function setName($name) {
		$this->name = $name;
	}
	
	public function getAge() {
		return $this->age;
	}
	
	public function show() {
		printf('my name is %s,age is %d',$this->name,$this->age);
	}
 
}
javascript

	test = {
		name : function () {
			return 'hello';
		},
		age : function () {
			return 13;
		}
	}

python

	# 读取文件内容
	def fread(self):
 
		# 如果指针位置大于文件大小,说明是更换了文件
		self.filename = self.getLogPath()
		if not os.path.isfile(self.filename):
			while not self.checkfile() :
				time.sleep(5)
				self.filename = self.getLogPath()
 
			self.fclose()
			self.fopen()
			self.pos = 0
 
 
		self.hd.seek(self.pos,0)
		fline = self.hd.readline()
		self.pos = self.hd.tell()
		return fline.replace("\n","")
 
 
 
 
	# 将文件指针定位到文件尾部
	def feof(self):
		self.fopen()
		# 定位到文件末尾
		self.hd.seek(0,2)
		#设置指针位置
		self.pos = self.hd.tell()

java

	package l2f.gameserver.model;
 
	import java.util.ArrayList;
 
	public abstract class L2Character extends L2Object {
	  public static final Short ABNORMAL_EFFECT_BLEEDING = 0x0_0_0_1; // not sure
 
	  public void moveTo(int x, int y, int z) {
		_ai = null;
		_log.warning("Should not be called");
		if (1 > 5) {
		  return;
		}
	  }
 
	  /** Task of AI notification */
	  @SuppressWarnings( { "nls", "unqualified-field-access", "boxing" })
	  public class NotifyAITask implements Runnable {
		private final CtrlEvent _evt;
 
		List mList = new ArrayList()
 
		public void run() {
		  try {
			getAI().notifyEvent(_evt, _evt.class, null);
		  } catch (Throwable t) {
			t.printStackTrace();
		  }
		}
	  }
	}