active questions tagged constant - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T06:38:18Z http://stackoverflow.com/feeds/tag/constant http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1897699/in-ruby-allowing-mixed-in-class-methods-access-to-class-constants 2 (In Ruby) allowing mixed-in class methods access to class constants eegg 2009-12-13T20:52:32Z 2009-12-13T21:28:10Z <p>Hi. I have a class with a constant defined for it. I then have a class method defined that accesses that class constant. This works fine. An example:</p> <pre><code>#! /usr/bin/env ruby class NonInstantiableClass Const = "hello, world!" class &lt;&lt; self def shout_my_constant puts Const.upcase end end end NonInstantiableClass.shout_my_constant </code></pre> <p>My problem arises in attempting to move this class method out to an external module, like so:</p> <pre><code>#! /usr/bin/env ruby module CommonMethods def shout_my_constant puts Const.upcase end end class NonInstantiableClass Const = "hello, world!" class &lt;&lt; self include CommonMethods end end NonInstantiableClass.shout_my_constant </code></pre> <p>Ruby interprets the method as requesting a constant from the module, rather than the class:</p> <pre><code>line 5:in `shout_my_constant': uninitialized constant CommonMethods::Const (NameError) </code></pre> <p>So, what magic tricks do you fellows have to let the method access the class constant? Many thanks.</p> http://stackoverflow.com/questions/1895595/should-screen-dimension-constants-that-hold-magic-numbers-be-refactored 0 Should screen dimension constants that hold magic numbers be refactored? Person 2009-12-13T04:56:13Z 2009-12-13T05:09:57Z <p>I have a few specific places in my code where I use specific pixel dimensions to blit certain things to the screen. Obviously these are placed in well named constants, but I'm worried that it's still kind of vague.</p> <p>Example: This is in a small function's local scope, so I would hope it's obvious that the constant's name applies to what the method name refers to.</p> <pre><code>const int X_COORD = 430.0; const int Y_COORD = 458.0; ApplySurface( X_COORD, Y_COORD, .... ); ... </code></pre> <p>The location on the screen was calculated specifically for that spot. I almost feel as if I should be making constants that say <code>SCREEN_BOTTOM_RIGHT</code> so I could do like something like <code>const int X_COORD = SCREEN_BOTTOM_RIGHT - SOME_OTHER_NAME</code>.</p> <p>Is the code above too ambiguous? Or as a developer would you see that and say, alright, thats (430, 458) on the screen. Got it.</p> http://stackoverflow.com/questions/1815841/constant-string-arrays 1 Constant string arrays timn 2009-11-29T15:42:11Z 2009-11-29T16:39:54Z <p>Is it possible to have a (fixed) array which stores its elements in the read-only segment of the executable and not on the stack? I came up with this code but unfortunately it is very unflexible when it comes to adding, moving or deleting items. How do I verify that the strings are indeed stored in the read-only segment? I tried <em>readelf -a file</em> but it doesn't list the strings.</p> <pre><code>typedef struct { int len; int pos[100]; char data[500]; } FixedStringArray; const FixedStringArray items = { 4, { 9, 14, 19, 24 }, "LongWord1Word2Word3Word4" } ; char* GetItem(FixedStringArray *array, int idx, int *len) { if (idx &gt;= array-&gt;len) { /* Out of range */ *len = -1; return NULL; } if (idx &gt; 0) { *len = array-&gt;pos[idx] - array-&gt;pos[idx - 1]; return &amp; array-&gt;data[array-&gt;pos[idx - 1]]; } *len = array-&gt;pos[idx]; return &amp; array-&gt;data[0]; } void PrintItem(FixedStringArray array, int idx) { int len; char *c; int i = 0; c = GetItem(&amp;array, idx, &amp;len); if (len == -1) return; while (i &lt; len) { printf("%c", *c); *c++; i++; } } </code></pre> <p>I am considering a script that automatically generates a struct for each array and uses the correct length for <em>pos</em> and <em>data</em>. Are there any concerns in terms of memory usage? Or would it be better to create one struct (like above) to fit all strings?</p> http://stackoverflow.com/questions/1781780/php-variable-scope 1 PHP Variable Scope Dylan 2009-11-23T08:28:05Z 2009-11-23T08:33:05Z <p>Is there a way to declare a variable so it is available in all functions. Basically I want to call: Global $varName; automatically for every function. And no, I can't use a constant.</p> <p>I don't think its possible but wanted to ask anyway. Thanks! :D</p> http://stackoverflow.com/questions/1704407/what-is-the-difference-between-char-s-and-char-s-in-c 6 What is the difference between char s[] and char *s in C? tsubasa 2009-11-09T22:34:21Z 2009-11-10T17:05:22Z <p>In C, I can do like this:</p> <p><code>char s[]="hello";</code> or <code>char *s ="hello";</code></p> <p>so i wonder what is the difference? I want to know what actually happen in memory allocation during compile time and run time. </p> http://stackoverflow.com/questions/1703235/constant-pointer-structs 0 Constant Pointer / structs Jon 2009-11-09T19:36:19Z 2009-11-09T19:43:48Z <p>In my programming class, we have</p> <pre><code>struct Time { int hours, min, sec; } </code></pre> <p>We are to create a method to compute the difference between two times:</p> <p><code>Time *timeDiff(const Time *t1, const Time *t2)</code></p> <p>I thought I could create the time difference by getting everything in seconds, and then subtracting the two values, but it seems like extra work to do something like</p> <pre><code>long hour1 = t1-&gt;hours; long min1 = t1-&gt;min; long sec1 = t1-&gt;sec; </code></pre> <p>And then using these values to get the time in seconds, do something similar for the second time, and then subtract. Any thoughts? Thanks!</p> http://stackoverflow.com/questions/699781/c-binary-constant-literal 6 C++ binary constant/literal Unknown 2009-03-31T02:16:56Z 2009-11-04T15:30:32Z <p>I'm using a well known template to allow binary constants</p> <pre><code>template&lt; unsigned long long N &gt; struct binary { enum { value = (N % 10) + 2 * binary&lt; N / 10 &gt; :: value } ; }; template&lt;&gt; struct binary&lt; 0 &gt; { enum { value = 0 } ; }; </code></pre> <p>So you can do something like binary&lt;101011011>::value. Unfortunately this has a limit of 20 digits for a unsigned long long.</p> <p>Does anyone have a better solution?</p> http://stackoverflow.com/questions/1492307/how-is-calculated-within-sas 1 How is π calculated within sas? Bazil 2009-09-29T12:44:10Z 2009-09-29T13:21:10Z <p>just curious! but I spotted that the value of π held by SAS is in fact incorrect.</p> <p>for instance:</p> <pre><code>data _null_; x= constant('pi') * 1000000000000000000000000000; put x= 32.; run; </code></pre> <p>gives a π value of (3.)141592653589792961327005696</p> <p>however - π is of course (3.)1415926535897932384626433832795 ( <a href="http://www.joyofpi.com/pi.html" rel="nofollow">http://www.joyofpi.com/pi.html</a> ) - to 31 dp.</p> <p>what gives??!!</p> http://stackoverflow.com/questions/44100/best-way-to-use-a-property-to-reference-a-key-value-pair-in-a-dictionary 2 Best way to use a property to reference a Key-Value pair in a dictionary Lawrence Johnston 2008-09-04T16:15:13Z 2009-09-19T00:57:26Z <p>This is a fairly trivial matter, but I'm curious to hear people's opinions on it.</p> <p>If I have a Dictionary which I'm access through properties, which of these formats would you prefer for the property?</p> <pre><code>/// &lt;summary&gt; /// This class's FirstProperty property /// &lt;/summary&gt; [DefaultValue("myValue")] public string FirstProperty { get { return Dictionary["myKey"]; } set { Dictionary["myKey"] = value; } </code></pre> <p>This is probably the typical way of doing it. It's fairly efficient, easy to understand, etc. The only disadvantage is with a longer or more complex key it would be possible to misspell it or change only one instance or something, leading me to this:</p> <pre><code>/// &lt;summary&gt; /// This class's SecondProperty property /// &lt;/summary&gt; [DefaultValue("myValue")] private const string DICT_MYKEY = "myKey" public string SecondProperty { get { return Dictionary[DICT_MYKEY]; } set { Dictionary[DICT_MYKEY] = value; } </code></pre> <p>Which is marginally more complicated, but seems to offer additional safety, and is closer to what I would think of as the "Code Complete" solution. The downside is that when you also have a /// block and a [DefaultValue()] block above the property already, it starts getting a bit crowded up there.</p> <p>So which do you like better, and why? Does anybody have any better ideas?</p> http://stackoverflow.com/questions/270408/is-it-better-in-c-to-pass-by-value-or-pass-by-constant-reference 9 Is it better in C++ to pass by value or pass by constant reference? Matt Pascoe 2008-11-06T21:43:00Z 2009-09-01T21:22:46Z <p>Is it better in C++ to pass by value or pass by constant reference?</p> <p>I am wondering which is better practice. I realize that pass by constant reference should provide for better performance in the program because you are not making a copy of the variable. </p> http://stackoverflow.com/questions/1358711/raising-an-exception-on-updating-a-constant-attribute-in-python 1 Raising an exception on updating a 'constant' attribute in python Ingenutrix 2009-08-31T18:21:13Z 2009-08-31T22:58:08Z <p>As python does not have concept of constants, would it be possible to raise an exception if an 'constant' attribute is updated? How? </p> <pre><code>class MyClass(): CLASS_CONSTANT = 'This is a constant' var = 'This is a not a constant, can be updated' #this should raise an exception MyClass.CLASS_CONSTANT = 'No, this cannot be updated, will raise an exception' #this should not raise an exception MyClass.var = 'updating this is fine' #this also should raise an exception MyClass().CLASS_CONSTANT = 'No, this cannot be updated, will raise an exception' #this should not raise an exception MyClass().var = 'updating this is fine' </code></pre> <p>Any attempt to change CLASS_CONSTANT as a class attribute or as an instance attribute should raise an exception.</p> <p>Changing var as a class attribute or as an instance attribute should not raise an exception. </p> http://stackoverflow.com/questions/1338940/define-some-costants-in-a-class -1 Define some costants in a class [closed] shilpi 2009-08-27T05:03:12Z 2009-08-27T05:11:13Z <p>define some costants in a class and then use another class to print them both the classes should be in diferent package in java</p> http://stackoverflow.com/questions/1290318/php-constants-containing-arrays 2 PHP Constants Containing Arrays? Rosarch 2009-08-17T20:45:36Z 2009-08-17T21:03:28Z <p>This failed:</p> <pre><code> define('DEFAULT_ROLES', array('guy', 'development team')); </code></pre> <p>Apparently, constants can't hold arrays. What is the best way to get around this?</p> <pre><code>define('DEFAULT_ROLES', 'guy|development team'); //... $default = split(DEFAULT_ROLES, '|'); </code></pre> <p>This seems like unnecessary effort.</p> http://stackoverflow.com/questions/271273/dynamic-allocation-of-constant-memory-in-cuda 1 Dynamic Allocation of Constant memory in CUDA Ben 2008-11-07T04:57:35Z 2009-08-11T15:56:47Z <p>Hello,</p> <p>I'm trying to take advantage of the constant memory, but I'm having a hard time figuring out how to nest arrays. What I have is an array of data that has counts for internal data but those are different for each entry. So based around the following simplified code I have two problems. First I don't know how to allocate the data pointed to by the members of my data structure. Second, since I can't use cudaGetSymbolAddress for constant memory I'm not sure if I can just pass the global pointer (which you cannot do with plain __device__ memory).</p> <pre><code> struct __align(16)__ data{ int nFiles; int nNames; int* files; int* names; }; __device__ __constant__ data *mydata; __host__ void initMemory(...) { cudaMalloc( (void **) &(mydata), sizeof(data)*dynamicsize ); for(int i=; i lessthan dynamicsize; i++) { cudaMemcpyToSymbol(mydata, &(nFiles[i]), sizeof(int), sizeof(data)*i, cudaMemcpyHostToDevice); //... //Problem 1: Allocate & Set mydata[i].files } } __global__ void myKernel(data *constDataPtr) { //Problem 2: Access constDataPtr[n].files, etc } int main() { //... myKernel grid, threads (mydata); } </code></pre> <p>Thanks for any help offered. :-)</p> http://stackoverflow.com/questions/1246832/c-binary-constants-representation 1 C# binary constants representation Andrei Rinea 2009-08-07T20:25:24Z 2009-08-07T20:59:06Z <p>I am really stumped on this one. In C# there is a hexadecimal constants representation format as below :</p> <pre><code>int a = 0xAF2323F5; </code></pre> <p>is there a binary constants representation format?</p> http://stackoverflow.com/questions/1214541/how-can-i-create-a-nested-hash-as-a-constant-in-perl 1 How can I create a nested hash as a constant in Perl? Pistos 2009-07-31T19:54:29Z 2009-08-04T17:05:37Z <p>I want to do, in Perl, the equivalent of the following Ruby code:</p> <pre><code>class Foo MY_CONST = { 'foo' =&gt; 'bar', 'baz' =&gt; { 'innerbar' =&gt; 'bleh' }, } def some_method a = MY_CONST[ 'foo' ] end end # In some other file which uses Foo... b = Foo::MY_CONST[ 'baz' ][ 'innerbar' ] </code></pre> <p>That is, I just want to declare a constant, nested hash structure for use both in the class and outside. How to?</p> http://stackoverflow.com/questions/1088773/tdd-any-pattern-for-constant-testing 6 TDD : Any pattern for constant testing ? Sylvain 2009-07-06T19:18:54Z 2009-07-06T20:51:18Z <p>Constants are beautiful people - they can hold in a unique place a value that is used everywhere in your code. Changing that value requires only one simple modification.</p> <p>Life is cool.</p> <p>Well, this is the promise. Reality is sometime different :</p> <ul> <li>You change the <code>LogCompleteFileName</code> constant value from <code>L:\LOGS\MyApp.log</code> to <code>\\Traces\App208.txt</code> and you get two files : <code>\\traces\App208.txt</code> for the traces and <code>\\traces\App208.txt.log</code> for the logs...</li> <li>You change <code>TransactionTimeout</code> from 2 to 4 minutes and you still get a timeout after 2 minutes (after spending the day, you find out that you also have to change the timeout of the DBMS and the timeout of the transaction manager...).</li> <li>You replace <code>SleepTimeInMinutes</code> from <code>1</code> to <code>10</code> and you see no change (after an hour or so, you find out that the constant's name was misleading : the granularity is not the minute but the millisecond...).</li> <li>Even more subtle: you change <code>CompanyName</code> from, say <code>Yahoo</code> to <code>Microsoft</code> but automated mail alerts are still sent to <code>alert@yahoo.com</code>...</li> </ul> <p>Creating a constant is a contract. You are telling your readers that whenever they change the value, it will still works the way they think it should be.</p> <p>Nothing less. </p> <p>Of course, you need to test that you are not misleading your readers. You have to make sure that the implied contract is right.</p> <p>How do you achieve that with TDD? I'm just stuck with that. The only way I can test a change for a constant (!) value is to make that constant an application setting... Should I have to conclude that the <code>const</code> keyword should be avoided when I think that the value can and will change?</p> <p>How are you testing your (so called) constants using TDD?</p> <p>Many thanks in advance :)</p> http://stackoverflow.com/questions/1050354/ruby-module-with-a-static-method-call-from-includer-class 0 Ruby module with a static method call from includer class Bogdan Gusiev 2009-06-26T17:45:35Z 2009-06-30T05:39:38Z <p>I need to define the constant in the module that use the method from the class that includes this module:</p> <pre><code>module B def self.included(base) class &lt;&lt; base CONST = self.find end end end class A def self.find "AAA" end include B end puts A::CONST </code></pre> <p>But the compiler gives the error on the 4th line.</p> <p>Is there any other way to define the constant?</p> http://stackoverflow.com/questions/1001450/php-parse-error-when-referencing-a-string 0 PHP parse error when referencing a string Andy E 2009-06-16T13:20:39Z 2009-06-18T08:48:53Z <p>I have the following constant defined in my PHP script:</p> <pre><code>define("MODULE_PATH", "D:\\modules\\"); </code></pre> <p>Whenever I try and assign the constant to a variable or as a function argument, I get a PHP parse error (with no explanation).</p> <pre><code>var $jim = MODULE_PATH; var $fh = fopen(MODULE_PATH . "module1.xml"); </code></pre> <p>Both above lines throw the parse error. I even tried using a variable instead of a constant and the error is still thrown. If I just echo the constant, it works fine but any assignment of the constant throws the parse error.</p> <p>I'm almost to the point of tearing my hair out! Anyone know what the problem is here?</p> http://stackoverflow.com/questions/823345/how-can-i-make-this-declaration-work 0 How can I make this declaration work? Keand64 2009-05-05T04:29:02Z 2009-05-24T11:16:36Z <p>EDIT: I also got an answer to make sector a vector of vectors:</p> <pre><code>vector&lt;vector&lt;char&gt;&gt;sector; </code></pre> <p>and that gets rid of the rest of my errors.</p> <p>EDIT: I've made sector an array of pointers as someone suggested, and still get three errors:</p> <p>EDIT: I have edited the program, but it has not fixed all of the errors:</p> <p>I have this section of a program:</p> <pre><code>char* load_data(int begin_point,int num_characters); ifstream mapdata("map_data.txt"); const int maxx=atoi(load_data(0,2)); const int maxy=atoi(load_data(2,2)); char** sector=new char[maxx][maxy]; char* load_data(int begin_point,int num_characters) { seekg(begin_point); char* return_val=new char[num_characters+1]; mapdata.getline(return_val,num_characters); return return_val; } </code></pre> <p>And I get these errors:</p> <p>line 5>error C2540: non-constant expression as array bound</p> <p>line 5>error C2440: 'initializing' : cannot convert from 'char (*)[1]' to 'char **'</p> <p>line 14>error C3861: 'seekg': identifier not found</p> <p>per seekg: yes I know I have to include fstream, I included that in main.cpp, this is a separate .h file also included in main.cpp.</p> <p>How do I fix the errors? Specifically, how to I fix the errors while keeping all my variables global?</p> <p>Also, if it helps, this is map_data.txt:</p> <pre><code>10 10 00O 99! 1 55X 19 What is a question? 18 This is an answer 1 1 2 1 </code></pre> http://stackoverflow.com/questions/831517/can-i-use-a-perl-constant-in-the-glob-operator 0 Can I use a Perl constant in the glob operator? grilix 2009-05-06T20:13:21Z 2009-05-07T04:21:32Z <p>I'm parsing XML files with something like:</p> <pre><code>while (&lt;files/*.xml&gt;) { ... } </code></pre> <p>I want to use a constant to 'files', say</p> <pre><code>use constant FILES_PATH =&gt; 'files'; while (&lt;FILES_PATH/*.xml&gt;) { ... } </code></pre> <p>I hope you understand the idea, and can help me :)..</p> <p>Thank you in advance.</p> http://stackoverflow.com/questions/823283/is-there-a-function-that-returns-the-character-string-at-a-point-in-a-txt-c 0 Is there a function that returns the character/string at a point in a .txt? (C++) Keand64 2009-05-05T04:02:37Z 2009-05-05T04:18:39Z <p>I know its possible to get a part of a .txt, then convert it to an integer, then store it in a variable, but is it possible to to that in a single declaration. (The variable needs to be global).</p> <p>Ie:</p> <pre><code>[data.txt] 1020 [convert_data.cpp] #include&lt;fstream&gt; fstream convert("data.txt"); //way to declare something equal to A PARTICULAR POINT in data.txt int main() { //how would I take this block of code and simplify it to two DECLARATIONS (not //function calls), or, if that's not possible or not practical, how would I make //n and m (or var1 and var2) global AND CONSTANT? char var1[5]; convert.getline(var1,2); char var2[5]; convert.getline(var2,2); const int n=atoi(var1); const int m=atoi(var2); return 0; } </code></pre> http://stackoverflow.com/questions/753121/error-on-defining-an-array-even-though-its-set-via-a-constant 0 Error on defining an array even though its set via a Constant... Joel B 2009-04-15T18:44:39Z 2009-04-19T06:30:01Z <p>Hi,</p> <p>I know this is really basic, but its got me stumped...</p> <p>In Objective-C I'm trying to write:</p> <pre><code>const int BUF_SIZE = 3; static char buffer[BUF_SIZE+1]; </code></pre> <p>But I get a storage size of buffer isn't constant. How do I make Xcode realise that I'm setting it to a constant, + 1...? Or is this not possible...?</p> <p>Thanks...!</p> <p>Joel</p> http://stackoverflow.com/questions/586118/what-is-the-suffix-used-for-long-long-constants 1 What is the suffix used for long long constants goldenmean 2009-02-25T14:10:22Z 2009-02-25T14:43:44Z <p>Hello,</p> <p>If i want to use something like below in a C code:</p> <pre><code>if(num &lt; 0x100000000LL) </code></pre> <p>I want the comparison to happen on a long long constant, but suffix LL doesn't work in MSVC6.0 , but it works in MS Visual Studio 2005.</p> <p>How can i get it working in MSVC 6.0?</p> <p>-Ajit</p> http://stackoverflow.com/questions/528122/why-doesnt-c-offer-constness-akin-to-c 5 Why doesn't C# offer constness akin to C++? Frederick 2009-02-09T13:27:57Z 2009-02-12T11:08:39Z <p>References in C# are quite similar to those on C++, except that they are garbage collected. </p> <p>Why is it then so difficult for the C# compiler to support the following:</p> <ol> <li>Members functions marked <code>const</code>.</li> <li>References to data types (other than string) marked <code>const</code>, through which only <code>const</code> member functions can be called ?</li> </ol> <p>I believe it would be really useful if C# supported this. For one, it'll really help the seemingly widespread gay abandon with which C# programmers return naked references to private data (at least that's what I've seen at my workplace).</p> <p>Or is there already something equivalent in C# which I'm missing? (I know about the <code>readonly</code> and <code>const</code> keywords, but they don't really serve the above purpose)</p> http://stackoverflow.com/questions/507923/why-isnt-string-empty-a-constant 16 Why isn't String.Empty a constant? travis 2009-02-03T16:49:46Z 2009-02-04T23:55:45Z <p>In .Net why is String.Empty read only instead of a constant? I'm just wondering if anyone knows what the reasoning was behind that decision.</p> http://stackoverflow.com/questions/489937/in-c-how-do-you-accomplish-the-same-thing-as-a-define 3 In C# how do you accomplish the same thing as a #define Justin Tanner 2009-01-28T23:49:23Z 2009-01-29T00:05:12Z <p>Coming from a C background I'm used to defining the size of the buffer in the following way:</p> <pre><code>#define BUFFER_SIZE 1024 uint8_t buffer[BUFFER_SIZE]; </code></pre> <p>How would you do the accomplish the same thing in C#?</p> <p>Also does the all-caps K&amp;R style fit in with normal C# Pascal/Camel case?</p> http://stackoverflow.com/questions/442735/how-can-i-embed-unicode-string-constants-in-a-source-file 2 How can I embed unicode string constants in a source file? jkp 2009-01-14T12:13:55Z 2009-01-14T13:39:13Z <p>Hi all:</p> <p>I'm writing some unit tests which are going to verify our handling of various resources that use other character sets apart from the normal latin alphabet: Cyrilic, Hebrew etc.</p> <p>The problem I have is that I cannot find a way to embed the expectations in the test source file: here's an example of what I'm trying to do...</p> <pre><code>/// /// Protected: TestGetHebrewConfigString /// void CPrIniFileReaderTest::TestGetHebrewConfigString() { prwstring strHebrewTestFilePath = GetTestFilePath( strHebrewTestFileName ); CPrIniFileReader prIniListReader( strHebrewTestFilePath.c_str() ); prIniListReader.SetCurrentSection( strHebrewSubSection ); CPPUNIT_ASSERT( prIniListReader.GetConfigString( L"דונדארןמע" ) == L"דונהשךוק") ); } </code></pre> <p>This quite simply doesnt work. Previously I worked around this using a macro which calls a routine to transform a narrow string to a wide string (we use towstring all over the place in our applications so it's existing code)</p> <pre><code>#define UNICODE_CONSTANT( CONSTANT ) towstring( CONSTANT ) wstring towstring( LPCSTR lpszValue ) { wostringstream os; os &lt;&lt; lpszValue; return os.str(); } </code></pre> <p>The assertion in the test above then became:</p> <pre><code>CPPUNIT_ASSERT( prIniListReader.GetConfigString( UNICODE_CONSTANT( "דונדארןמע" ) ) == UNICODE_CONSTANT( "דונהשךוק" ) ); </code></pre> <p>This worked OK on OS X but now I'm porting to linux and I'm finding that the tests are all failing: it all feels rather hackish as well. Can anyone tell me if they have a nicer solution to this problem?</p> http://stackoverflow.com/questions/405548/c-are-all-enum-constants 8 C# - are all Enum constants? Jeremy Rudd 2009-01-01T22:10:48Z 2009-01-01T22:13:07Z <p>Are all Enum enumerations constants? Do they get <strong>converted to their value at compile-time</strong>, or at run-time?</p> http://stackoverflow.com/questions/377795/how-to-get-a-c-constant-pointer-equivalent-in-java 1 How to get a c++ constant pointer equivalent in Java? sarav 2008-12-18T13:12:37Z 2008-12-18T13:27:27Z <p>When I pass an immutable type object(String, Integer,.. ) as final to a method I can achieve the characters of a C++ constant pointer. But how can I enforce such behavior in objects which are mutable?</p> <pre><code>public void someMethod(someType someObject){ /* * code that modifies the someObject's state * */ } </code></pre> <p>All I want is to prevent someMethod from modifying the state of someObject without making any change in someType. Is this possible?</p>