Is 'id' a reserved keyword in Salesforce?
Had a silly question in my head which I hope that someone can answer.
Can we declare id as a variable in Apex?
For example:
Id id;
I tried to declare the same and Salesforce allowed me to save my class.
However when I tried to declare other Primitive types such as String or Date, I got a compile error while saving the class.
String string; //compile error
Date date; //compile error
These variables are not mentioned in the Salesforce documentation for Reserved keywords(link: https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_reserved_words.htm)
Would anyone happen to know if there are any more such variables?
I have a jSON string that I need to deserialize, and that has 'id' as one of its attributes. I would like to understand if there would be any issues if I were to go ahead and create a variable with a name of 'id'
apex api integration
add a comment |
Had a silly question in my head which I hope that someone can answer.
Can we declare id as a variable in Apex?
For example:
Id id;
I tried to declare the same and Salesforce allowed me to save my class.
However when I tried to declare other Primitive types such as String or Date, I got a compile error while saving the class.
String string; //compile error
Date date; //compile error
These variables are not mentioned in the Salesforce documentation for Reserved keywords(link: https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_reserved_words.htm)
Would anyone happen to know if there are any more such variables?
I have a jSON string that I need to deserialize, and that has 'id' as one of its attributes. I would like to understand if there would be any issues if I were to go ahead and create a variable with a name of 'id'
apex api integration
I dont know why string, double, integer are not mentioned in reserved keywords... but as I know there is no issue in declaring a variable as 'id'...
– Ayub
Jan 9 at 18:46
Likwise you can create a class with name Id ... public class Id{} ....but you can not do with String .... public class String{} .....
– Ayub
Jan 9 at 18:48
add a comment |
Had a silly question in my head which I hope that someone can answer.
Can we declare id as a variable in Apex?
For example:
Id id;
I tried to declare the same and Salesforce allowed me to save my class.
However when I tried to declare other Primitive types such as String or Date, I got a compile error while saving the class.
String string; //compile error
Date date; //compile error
These variables are not mentioned in the Salesforce documentation for Reserved keywords(link: https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_reserved_words.htm)
Would anyone happen to know if there are any more such variables?
I have a jSON string that I need to deserialize, and that has 'id' as one of its attributes. I would like to understand if there would be any issues if I were to go ahead and create a variable with a name of 'id'
apex api integration
Had a silly question in my head which I hope that someone can answer.
Can we declare id as a variable in Apex?
For example:
Id id;
I tried to declare the same and Salesforce allowed me to save my class.
However when I tried to declare other Primitive types such as String or Date, I got a compile error while saving the class.
String string; //compile error
Date date; //compile error
These variables are not mentioned in the Salesforce documentation for Reserved keywords(link: https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_reserved_words.htm)
Would anyone happen to know if there are any more such variables?
I have a jSON string that I need to deserialize, and that has 'id' as one of its attributes. I would like to understand if there would be any issues if I were to go ahead and create a variable with a name of 'id'
apex api integration
apex api integration
asked Jan 9 at 18:27
NevdsNevds
282
282
I dont know why string, double, integer are not mentioned in reserved keywords... but as I know there is no issue in declaring a variable as 'id'...
– Ayub
Jan 9 at 18:46
Likwise you can create a class with name Id ... public class Id{} ....but you can not do with String .... public class String{} .....
– Ayub
Jan 9 at 18:48
add a comment |
I dont know why string, double, integer are not mentioned in reserved keywords... but as I know there is no issue in declaring a variable as 'id'...
– Ayub
Jan 9 at 18:46
Likwise you can create a class with name Id ... public class Id{} ....but you can not do with String .... public class String{} .....
– Ayub
Jan 9 at 18:48
I dont know why string, double, integer are not mentioned in reserved keywords... but as I know there is no issue in declaring a variable as 'id'...
– Ayub
Jan 9 at 18:46
I dont know why string, double, integer are not mentioned in reserved keywords... but as I know there is no issue in declaring a variable as 'id'...
– Ayub
Jan 9 at 18:46
Likwise you can create a class with name Id ... public class Id{} ....but you can not do with String .... public class String{} .....
– Ayub
Jan 9 at 18:48
Likwise you can create a class with name Id ... public class Id{} ....but you can not do with String .... public class String{} .....
– Ayub
Jan 9 at 18:48
add a comment |
2 Answers
2
active
oldest
votes
Id isn't a reserved keyword, and there's no problem using it in wrapper classes, but you should avoid using Id, Account (etc), Schema, etc in classes that have methods, because it will shadow the system class. For example, the following won't compile:
Id Id;
Id v = Id.valueOf('000000000000000');
The same is true for class names, especially top level classes, as it can cause unrelated classes to break unexpectedly. The most common scenario I run across is when a developer names a class Test, which tends to cause all unit tests to fall to compile.
+1 from me, though I would say that rather than avoiding usingid
as a variable name, be aware of the shadowing problem for the rare case where you might use the staticvalueOf
method.
– Keith C
Jan 9 at 20:02
add a comment |
There is no problem using Id
as an identifier in Apex. You could run a simple script like the following to verify for yourself:
class Foo
{
String id;
}
Foo instance = (Foo)JSON.deserialize('{"id": "bar"}', Foo.class);
system.debug(instance.id);
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "459"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f246049%2fis-id-a-reserved-keyword-in-salesforce%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Id isn't a reserved keyword, and there's no problem using it in wrapper classes, but you should avoid using Id, Account (etc), Schema, etc in classes that have methods, because it will shadow the system class. For example, the following won't compile:
Id Id;
Id v = Id.valueOf('000000000000000');
The same is true for class names, especially top level classes, as it can cause unrelated classes to break unexpectedly. The most common scenario I run across is when a developer names a class Test, which tends to cause all unit tests to fall to compile.
+1 from me, though I would say that rather than avoiding usingid
as a variable name, be aware of the shadowing problem for the rare case where you might use the staticvalueOf
method.
– Keith C
Jan 9 at 20:02
add a comment |
Id isn't a reserved keyword, and there's no problem using it in wrapper classes, but you should avoid using Id, Account (etc), Schema, etc in classes that have methods, because it will shadow the system class. For example, the following won't compile:
Id Id;
Id v = Id.valueOf('000000000000000');
The same is true for class names, especially top level classes, as it can cause unrelated classes to break unexpectedly. The most common scenario I run across is when a developer names a class Test, which tends to cause all unit tests to fall to compile.
+1 from me, though I would say that rather than avoiding usingid
as a variable name, be aware of the shadowing problem for the rare case where you might use the staticvalueOf
method.
– Keith C
Jan 9 at 20:02
add a comment |
Id isn't a reserved keyword, and there's no problem using it in wrapper classes, but you should avoid using Id, Account (etc), Schema, etc in classes that have methods, because it will shadow the system class. For example, the following won't compile:
Id Id;
Id v = Id.valueOf('000000000000000');
The same is true for class names, especially top level classes, as it can cause unrelated classes to break unexpectedly. The most common scenario I run across is when a developer names a class Test, which tends to cause all unit tests to fall to compile.
Id isn't a reserved keyword, and there's no problem using it in wrapper classes, but you should avoid using Id, Account (etc), Schema, etc in classes that have methods, because it will shadow the system class. For example, the following won't compile:
Id Id;
Id v = Id.valueOf('000000000000000');
The same is true for class names, especially top level classes, as it can cause unrelated classes to break unexpectedly. The most common scenario I run across is when a developer names a class Test, which tends to cause all unit tests to fall to compile.
edited Jan 9 at 20:16
answered Jan 9 at 19:32


sfdcfoxsfdcfox
253k11194434
253k11194434
+1 from me, though I would say that rather than avoiding usingid
as a variable name, be aware of the shadowing problem for the rare case where you might use the staticvalueOf
method.
– Keith C
Jan 9 at 20:02
add a comment |
+1 from me, though I would say that rather than avoiding usingid
as a variable name, be aware of the shadowing problem for the rare case where you might use the staticvalueOf
method.
– Keith C
Jan 9 at 20:02
+1 from me, though I would say that rather than avoiding using
id
as a variable name, be aware of the shadowing problem for the rare case where you might use the static valueOf
method.– Keith C
Jan 9 at 20:02
+1 from me, though I would say that rather than avoiding using
id
as a variable name, be aware of the shadowing problem for the rare case where you might use the static valueOf
method.– Keith C
Jan 9 at 20:02
add a comment |
There is no problem using Id
as an identifier in Apex. You could run a simple script like the following to verify for yourself:
class Foo
{
String id;
}
Foo instance = (Foo)JSON.deserialize('{"id": "bar"}', Foo.class);
system.debug(instance.id);
add a comment |
There is no problem using Id
as an identifier in Apex. You could run a simple script like the following to verify for yourself:
class Foo
{
String id;
}
Foo instance = (Foo)JSON.deserialize('{"id": "bar"}', Foo.class);
system.debug(instance.id);
add a comment |
There is no problem using Id
as an identifier in Apex. You could run a simple script like the following to verify for yourself:
class Foo
{
String id;
}
Foo instance = (Foo)JSON.deserialize('{"id": "bar"}', Foo.class);
system.debug(instance.id);
There is no problem using Id
as an identifier in Apex. You could run a simple script like the following to verify for yourself:
class Foo
{
String id;
}
Foo instance = (Foo)JSON.deserialize('{"id": "bar"}', Foo.class);
system.debug(instance.id);
answered Jan 9 at 18:55


Adrian Larson♦Adrian Larson
107k19114243
107k19114243
add a comment |
add a comment |
Thanks for contributing an answer to Salesforce Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f246049%2fis-id-a-reserved-keyword-in-salesforce%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I dont know why string, double, integer are not mentioned in reserved keywords... but as I know there is no issue in declaring a variable as 'id'...
– Ayub
Jan 9 at 18:46
Likwise you can create a class with name Id ... public class Id{} ....but you can not do with String .... public class String{} .....
– Ayub
Jan 9 at 18:48