I doubt I will introduce anything like Classes into my memorisation. Once upon a time a programmer had a problem, so he introduced OOP, now the programmer has two problems…
What I have here in reality is a two-dimensional array. (Technically an associative array)
countries[name][information]
So for example:
countries[china][capital] = “Beijing”
countries[china][language] = “Mandarin”
countries[china][currency] = “Yuan”
When I review them, mentally, I’m just doing this loop:
for(int name=0; name<countries; name++)
{
for (int info=0; info <3; info++)
{
printf("%s", countries[name][info]);
}
}
If the amount of information to be stored was a lot larger, e.g. more than the 6 bits of information I’m likely to memorise, I would probably look at some other type of storage, or a better peg list.
I did like your link to the abstract story type of peg list, I can see this being useful where there is more information. Although, I was a little confused about how it would be used with multiple examples. One of the links you explained so someone how to remember car/insurance information and gave an example. But I couldn’t really see how the example was fitting into the overall task. If we use my array example and your car explanation together.
|Location|Data|Mnemonic|
|Driver’s seat|Donaldson|Donald Duck|
|Passenger’s seat|1560|Outlaw making dinner reservations on cell phone (Jewess, it’s a joke “what does a Jewish American princess make for dinner?”|
|Front hood|Jeep Grand Cherokee|Jeep, the cartoon character or Egyptian and his wooden chair that breaks when he sits in it.|
|Back seat|8Z01|UFO, (zebra) flying in to jail bars in the back seat, and turned into pita bread by a Saudi baker.|
|Digital panel between seats|0226|Swan, (wench) tempting other by flashing her knees in a ruffled skirt|
If we try to insert this into my array, car[???][Data] I couldn’t figure out what your first index was. So I couldn’t really work out how the OP of the other question was going to keep track of where these stories were. 
I’m assuming in my case I would still walk my memory palace, and when I happen upon the loci, I use the story.