Basic knowledge C/C++ (2)
Difference between C++ and java Java runs in a virtual machine C++ supports unsigned arithmetic C++ allows operator overriding C++ àmultiple inheritance of class Java has a build-in garbage collection In java, parameters are always passed by value C++...
WS client Eclipse + Tomcat
refer : http://www-inf.it-sudparis.eu/~nguyen_n/teaching_assistant/web_services/webservice_client_generation WS Client deployment with Eclipse WTP In this tutorial we will see how Eclipse generate the Client stub. We start with the HelloWorld service...
HelloWorld service deployment. Eclipse and Tomcat
refer : http://www-inf.it-sudparis.eu/~nguyen_n/teaching_assistant/web_services/simple_web_service_deployment_with_eclipse_and_tomcat_server Setting up Tomcat on Eclipse Download and extract Tomcat (suppose version 7.0.12) on your machine. Open the server...
Basic knowledge C/C++ (1)
1. storage qualifiers Volatile : keyword for variables, the value will change every time we use it, we should read the value in the memory. const: cannot be changed 2.static: 2.1 for variable: it means the value cannot be changed when the function/method...