{"id":7907,"date":"2020-07-31T06:53:40","date_gmt":"2020-07-31T06:53:40","guid":{"rendered":"http:\/\/www.max-sperling.bplaced.net\/?p=7907"},"modified":"2024-02-16T10:24:11","modified_gmt":"2024-02-16T10:24:11","slug":"order-of-const-c","status":"publish","type":"post","link":"http:\/\/www.max-sperling.bplaced.net\/?p=7907","title":{"rendered":"Position of const (C++)"},"content":{"rendered":"<p>&#8220;West-Const vs. East-Const&#8221;<\/p>\n<hr>\n<p><strong>West-Const<\/strong> (The common one)<\/p>\n<pre>\r\nint * num             = new int(42); \/\/ Mutable ptr to a mutable int\r\nconst int * num       = new int(42); \/\/ Mutable ptr to a const int\r\nint * const num       = new int(42); \/\/ Const ptr to a mutable int\r\nconst int * const num = new int(42); \/\/ Const ptr to a const int\r\n<\/pre>\n<hr>\n<p><strong>East-Const<\/strong> (Right to Left (RTL))<\/p>\n<pre>\r\nint * num             = new int(42); \/\/ Mutable ptr to a mutable int\r\nint const * num       = new int(42); \/\/ Mutable ptr to a const int\r\nint * const num       = new int(42); \/\/ Const ptr to a mutable int\r\nint const * const num = new int(42); \/\/ Const ptr to a const int\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>&#8220;West-Const vs. East-Const&#8221; West-Const (The common one) int * num = new int(42); \/\/ Mutable ptr to a mutable int<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false},"categories":[27],"tags":[],"_links":{"self":[{"href":"http:\/\/www.max-sperling.bplaced.net\/index.php?rest_route=\/wp\/v2\/posts\/7907"}],"collection":[{"href":"http:\/\/www.max-sperling.bplaced.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.max-sperling.bplaced.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.max-sperling.bplaced.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/www.max-sperling.bplaced.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=7907"}],"version-history":[{"count":1,"href":"http:\/\/www.max-sperling.bplaced.net\/index.php?rest_route=\/wp\/v2\/posts\/7907\/revisions"}],"predecessor-version":[{"id":16747,"href":"http:\/\/www.max-sperling.bplaced.net\/index.php?rest_route=\/wp\/v2\/posts\/7907\/revisions\/16747"}],"wp:attachment":[{"href":"http:\/\/www.max-sperling.bplaced.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=7907"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.max-sperling.bplaced.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=7907"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.max-sperling.bplaced.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=7907"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}