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
5 months agoMarya
6 months agoRosalind
6 months agoJaime
6 months agoJennifer
6 months agoCiara
6 months agoJohnna
6 months agoAntonio
6 months agoMaryanne
7 months agoWalker
7 months agoGlory
7 months ago