Skip to content

Instantly share code, notes, and snippets.

@codefriar
Created September 23, 2019 20:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codefriar/c20f09bc208628b0de9ecc057694cfa9 to your computer and use it in GitHub Desktop.
Save codefriar/c20f09bc208628b0de9ecc057694cfa9 to your computer and use it in GitHub Desktop.
public with sharing class WeekFiveClassExercises {
public static void allAboutSets() {
//Let's make a set
Set<String> cuisineTypes = new Set<String>();
//Why a set instead of a list? Usually because we need each entry in the collection to be unique.
//Perhaps we're creating a list of cuisines and it's possible we'll encounter the same one twice, but we don't want it to appear twice
cuisineTypes.add('Chinese');
cuisineTypes.add('Thai');
cuisineTypes.add('Indian');
cuisineTypes.add('Mexican');
cuisineTypes.add('Italian');
cuisineTypes.add('Balkan');
cuisineTypes.add('American Diner');
//we now have a set of the above cusines. What's important to know is that they are not guaranteed to be in the same
//order that we put them in: Sets are unordered
//And if we try and add a duplicate to the list?
//To start we have how many in the list?
System.debug('Size of our list before trying to re-add Balkan ' + cuisineTypes.size());
cuisineTypes.add('Balkan');
cuisineTypes.remove('TexMex');
System.debug('Size of our list after trying to re-add Balkan ' + cuisineTypes.size());
//Run this method and check the debug log, no change in size! Sets are unique, but you won't get an error when you re-ad a duplicate element.
//Under the hood, when you try to add a duplicate, you're replacing it, but with the very same value
}
public static void muchAdoAboutMaps() {
//Maps are incredibly useful, but they work a little differently than other collections.
//From your reading you know that they are key-value pairs. So each key, which must be unique, 'maps' to a value.
//Use a map when you want to be able to quickly get a value based on a key. Let's look at an example.
//A map of the names of our restaurant customers, indexed by a custom Id number
//In this hypothetical, we're not using a Salesforce Id, just a fake Id stored as an integer.
Map<Integer, String> restaurantsById = new Map<Integer, String>();
// Map<Id,someSobject>
//Let's add some entries in the format of: map.put(key, value)
restaurantsById.put(1234, 'Pok Pok');
restaurantsById.put(8438, 'Toro Bravo');
restaurantsById.put(6784, 'Daruma Sushi');
restaurantsById.put(48929, 'Moon and Sixpence');
restaurantsById.put(89453, 'St. Jacks');
//Ok, as we can see, maps use .put() whereas sets and lists use .add()
//Now that we have a map, how can we get at the data?
//
List<Account> accts = [SELECT Id, Name FROM Account];
// x = y --> x == 5, then y == 5.
Map<id,Account> acctMap = new Map<Id,Account>(accts);
// Old version to new version comparison
// so in an AFTER update trigger
// you get - for free - trigger.oldMap and trigger.newMap
// trigger.oldMap.get(trigger.newMap.values()[0].id);
// Map<Id,List<Contact>>
//You can use .keySet() to get a Set of the keys in the map (It's a set, since the Keys are unique!)
Set<Integer> mapKeysSet = restaurantsById.keySet();
System.debug('The KeySet of our Map: ' + mapKeysSet);
//Or, you can use .values() to get a list of all the values in the map (It's a list, since there may be duplicates!)
List<String> mapValuesList = restaurantsById.values();
System.debug('The values in our Map: ' + mapValuesList);
//Ok, now one of the most common uses of a map is when you have a key but need to get the value. For example
//let's say we have a list of our ids, and need to fetch the restaurant name
//Let's make a list of Ids and then loop through, fetching the restaurant name.
List<Integer> idList = new List<Integer>{ 1234, 6784, 89453 };
// Reading for loops:
// for each loop
// you know it's a for:each loop because tehre's a : in the definition
// : operator for do this once for every element in the follow collection.
// we know it's a collection, because it's to the RIGHT of the colon.
// To the LEFT of the colon: is a variable decliration.
// for(Account itr : [select id from account]){}
for (Integer i : idList) {
//When we use the get method on a map, and pass in the Id, we get back the value which is associated with that Id
String restaurantName = restaurantsById.get(i);
System.debug('restaurantName: ' + restaurantName);
}
//You'll see a lot more of maps when we work on Triggers in the comming weeks!
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment