创建 BankAcct 和 CreateContactFromCan 类
跟随 Trail Together 进行学习
进行这一步骤时,想要跟专家一起学习吗?观看此视频,它是 Trail Together 系列的一部分。
(这部分内容从 08:08 开始,如果您想要倒回去再次观看步骤的开头部分可以从这里开始。)
创建 Apex 类
创建称作 BankAcct 的 Apex 类赋予 BankAcct 类三个属性:balance、acctName 和 acctType。加入称作 makeDeposit 的方法,用来设置帐户余额。
- 在 Developer Console 中,单击 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 类。