A developer creates a custom controller and a custom Visualforce page by using the code block below:
public class MyController {
public String myString {
get {
if (myString == null) { myString = 'a';
}
return myString;
} private set; } public string getMyString (){
return 'getMyString';
} public string getStringMethod () {
if (myString == null) {
myString = 'b';
} return myString;
}
}
What can the user expect to see when accessing the custom page?
Carin
4 months agoMarya
4 months agoRosalind
4 months agoJaime
4 months agoJennifer
4 months agoCiara
5 months agoJohnna
5 months agoAntonio
5 months agoMaryanne
5 months agoWalker
5 months agoGlory
5 months ago