BankAcct および CreateContactFromCan クラスを作成する
Trail Together の動画
エキスパートの説明を見ながらこのステップを進めて行きたい場合は、Trail Together シリーズの一部である、こちらの動画をご覧ください。
(巻き戻して最初から見直したい場合、このクリップは 08:08 分から開始されます。)
Apex クラスを作成する
BankAcct という名前の Apex クラスを作成します。BankAcct クラスに、balance、acctName、acctType という 3 つの属性を指定します。口座残高を設定するために makeDeposit という名前のメソッドを含めます。
- 開発者コンソールで、[File (ファイル)] | [New (新規)] | [Apex Class (Apex クラス)] をクリックします。
- [New Apex Class (新規 Apex クラス)] ウィンドウで、
BankAcct
と入力し、[OK]をクリックします。 - [Enter Apex Code (Apex コードを入力)] ウィンドウのコードを次のコードに置き換えます。
public class BankAcct { private integer balance=0; public string acctName; //Declare a public string attribute named accttype public string accttype; //Declare a method, named makeDeposit, that accepts an integer named deposit //Within the method, add the deposit amount to the balance public void makeDeposit (integer deposit) { balance = balance + deposit; } //Declare a method, named getBalance, that returns an integer public integer getBalance() { //Return the balance attribute return balance; } }
- [File (ファイル)] | [Save (保存)] をクリックします。
CreateContactFromCan というクラスと createContact というメソッドを作成します。
- [File (ファイル)] | [New (新規)] | [Apex Class (Apex クラス)] をクリックします。
- [New Apex class (新規 Apex クラス)] ウィンドウで、
CreateContactFromCan
と入力し、[OK]をクリックします。 - [Enter Apex Code (Apex コードを入力)] ウィンドウのコードを次のコードに置き換えます。
public with sharing class CreateContactFromCan { public void createContact(){ } }
- CreateContactFromCan クラスを保存します。