20.11.2016 Views

Android App Development ฉบับสมบูรณ์

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

ตัวอย่างการประกาศเมธอด เช่น<br />

public void setWeight(double dblWeight)<br />

{<br />

weightCat = dblWeight;<br />

}<br />

public void setHeight(double dblHeight)<br />

{<br />

heightCat = dblHeight;<br />

}<br />

public double upWeight(double dblWeight)<br />

{<br />

weightCat = weightCat + dblWeight;<br />

return weightCat;<br />

}<br />

public double downWeight(double dblWeight)<br />

{<br />

weightCat = weightCat - dblWeight;<br />

return weightCat;<br />

}<br />

public double upHeight(double dblHeight)<br />

{<br />

heightCat = heightCat + dblHeight;<br />

return heightCat;<br />

}<br />

จากตัวอย่างการสร้างคลาส การประกาศแอตทริบิวต์ และการประกาศเมธอด ซึ่งจะได้คลาสดังนี้<br />

public class Cat {<br />

private String nameCat;<br />

private String colorCat;<br />

public double heightCat;<br />

public double weightCat;<br />

public void setWeight(double dblWeight)<br />

{<br />

weightCat = dblWeight;<br />

}<br />

public void setHeight(double dblHeight)<br />

{<br />

heightCat = dblHeight;<br />

}<br />

public double upWeight(double dblWeight)<br />

{<br />

weightCat = weightCat + dblWeight;<br />

return weightCat;<br />

}<br />

public double downWeight(double dblWeight)<br />

{<br />

342<br />

<strong>Android</strong> <strong>App</strong> <strong>Development</strong> <strong>ฉบับสมบูรณ์</strong>

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!