May 2019
Intermediate to advanced
546 pages
12h 41m
English
Since we know how to define a class, let's see how to create it and a private modifier:
public class ActorSelector{ public static String myString = ''; private static List<String> getActorsByMovie(String sMovieTitle){ System.debug(sMovieTitle); return null; }}
ActorSelector.getActorsByMovie('Lethal Weapon');
Let's take a look at the following steps:
Read now
Unlock full access