devxlogo

October 10, 2000

Servlet Resources

Question: Where is the best place to store .property files and .xml files for servlets/jsp? Right now I am using “user.home”, but there is a problem when you have multiple

Casts in C++

Question: Can I cast an unsigned integer to an enumerator? If so, could you provide an example? Answer: You can use static_cast to cast an int to an enumerator. However,