Skip to main content
Join the Agentforce Hackathon on Nov. 18-19 to compete for a $20,000 Grand Prize. Sign up now. Terms apply.

BankAcct 및 CreateContactFromCan 클래스 만들기

참고

참고

한국어로 학습하시겠어요? Trailhead playground에서 한국어로 실습 과제를 시작하고, 괄호 안에 제공된 번역을 사용해 탐색해 보세요. 영어 데이터를 기반으로 실습 과제 검증이 이루어지므로 영문으로 표시된 값만 복사해 붙여 넣습니다. 한국어 조직에서 실습 과제를 통과하지 못한 경우, (1) 로캘을 미국을 바꾸고 (2) 여기에 제시된 지침에 따라 언어를 영어로 바꾼 후 (3) "Check Challenge(과제 확인)" 버튼을 눌러 다시 진행해 보세요.

원하는 언어로 Trailhead 사용하기 뱃지를 확인해 현지화된 Trailhead 경험을 활용하는 방법에 대해 자세히 알아보세요.

Trail Together와 함께 알아보기

이 단계를 전문가와 함께 진행하고 싶으신가요? Trail Together 시리즈의 일부인 이 비디오를 시청하세요.

(이 영상은 8분 08초부터 시작합니다. 단계 시작 부분으로 되돌려 다시 시청하려는 경우 참고하세요.)

Apex 클래스 만들기

이름이 BankAcct인 Apex 클래스를 만듭니다. BankAcct 클래스에 balance(잔액), acctName(계좌이름) 및 acctType(계좌유형)이라는 세 가지 특성을 부여합니다. 이름이 makeDeposit인 메서드를 포함시켜 계좌 잔액을 설정합니다.

  1. Developer Console에서 File(파일) | New(새로 만들기) | Apex Class(Apex 클래스)를 클릭합니다.
  2. New Apex Class(새 Apex 클래스) 창에 BankAcct를 입력한 후 OK(확인)를 클릭합니다.
  3. 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;
        }
    }
  4. File(파일) | Save(저장)를 클릭합니다.

이름이 CreateContactFromCan인 클래스와 이름이 createContact인 메서드를 만듭니다.

  1. File(파일) | New(새로 만들기) | Apex Class(Apex 클래스)를 클릭합니다.
  2. New Apex class(새 Apex 클래스) 창에 CreateContactFromCan을 입력한 후 OK(확인)를 클릭합니다.
  3. Enter Apex Code(Apex 코드 입력) 창에 있는 코드를 다음 코드로 바꿉니다.
    public with sharing class CreateContactFromCan {
        public void createContact(){
        }
    }
  4. CreateContactFromCan 클래스를 저장합니다.
Salesforce 도움말에서 Trailhead 피드백을 공유하세요.

Trailhead에 관한 여러분의 의견에 귀 기울이겠습니다. 이제 Salesforce 도움말 사이트에서 언제든지 새로운 피드백 양식을 작성할 수 있습니다.

자세히 알아보기 의견 공유하기