Is 'id' a reserved keyword in Salesforce?












5















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'










share|improve this question























  • 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
















5















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'










share|improve this question























  • 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














5












5








5








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'










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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



















  • 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










2 Answers
2






active

oldest

votes


















3














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.






share|improve this answer


























  • +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



















4














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);





share|improve this answer























    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    3














    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.






    share|improve this answer


























    • +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
















    3














    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.






    share|improve this answer


























    • +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














    3












    3








    3







    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.






    share|improve this answer















    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.







    share|improve this answer














    share|improve this answer



    share|improve this answer








    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 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

















    +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













    4














    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);





    share|improve this answer




























      4














      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);





      share|improve this answer


























        4












        4








        4







        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);





        share|improve this answer













        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);






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jan 9 at 18:55









        Adrian LarsonAdrian Larson

        107k19114243




        107k19114243






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            MongoDB - Not Authorized To Execute Command

            Npm cannot find a required file even through it is in the searched directory

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith