CrazyEngineers Forum |
- Programming Practice
- Java Strings
- Numerical Analysis Methods
- Ebook of 'industrial engineering'
- Suggest Books for Data Structures
- Micromax Q80 Review
- Hello!!
- Help me basic software design knowlegde.
- Bugatti veyron facts.................
- World Music Day
- GATE test review
- Mechanical GATE study
- Hay to all
- Connect the brands & the logo with the Caricature....
- Multi-hopping with Zigbee
Posted: 22 Jun 2011 01:27 PM PDT hi everyone,plz suggest some good sites/ebooks for practicing programming Thanks |
Posted: 22 Jun 2011 01:01 PM PDT String type, its not a primitive type its a class type, used to represent a sequences of characters. The characters themselves are Unicode. Unlike C and C++, strings do not end with \0. A String literal is enclosed in double quotes marks : "Code2Learn and Unacademy team welcomes you." Creating Strings : The most direct way to create a string is to write: String s = "quick" ; Whenever it encounters a string literal in your code, the compiler creates a String object with its valuein this case, "quick'. As with any other object, you can create String objects by using the new keyword and a constructor. The String class has eleven constructors that allow you to provide the initial value of the string using different sources, such as an array of characters: public class StringDemo{ public static void main(String args[]){ char[] charac = { 'q', 'u', 'i', 'c', 'k'}; String str = new String( charac ); System.out.println( str ); } } This would produce following result: quick Note : *The String class is immutable, so that once it is created a String object cannot be changed. If there is a necessity to make alot of modifications to Strings of characters then you should use String Buffer & String Builder Classes. **The String data type always starts from captical S and not s, i.e. String str=null; (is right) and string str=null; (is wrong). For video tutorial follow this link : CLICK Quote: |
Posted: 22 Jun 2011 12:54 PM PDT Runge Kutta method is a part of numerical analysis. Its an iterative method. To know more read :- CLICK to get Java Code for the above method Click Here. |
Ebook of 'industrial engineering' Posted: 22 Jun 2011 08:56 AM PDT :confused:can any one give or guide me for getting the e book of 'industrial engineering'.plsssssssssssssssssssssssssssssssssss ssssssssssssssss:( |
Suggest Books for Data Structures Posted: 22 Jun 2011 07:54 AM PDT Hey friends,Please suggest me a good book for Data Structures.I heard "Data Structure through C" by Yashwant kanetkar is a good one.Is it so? |
Posted: 22 Jun 2011 06:49 AM PDT Micromax Q80 features push mail service by Micromax, called ezmail. Check out our detailed review of Micromax Q80 - Micromax Q80 - Detailed Look |
Posted: 22 Jun 2011 06:07 AM PDT Name: H.M. Arif *Engineering Trade: Electrical Location: Massachusetts, U.S.A. *Occupation: Working as a Power System Engineer at a not-for profit organization Work Experience: about 4 years *Hobbies & Interests: reading books *Aim in life: To be successful in my realm *I joined CrazyEngineers because: I would like to share my engineering knowledge with other. Moreover I would like learn from other engineers. It's very nice to meeting you all! - H.M. Arif - |
Help me basic software design knowlegde. Posted: 22 Jun 2011 05:11 AM PDT Hello Friends, I just complied a very very auto CAD design class. I want to know more information about basic software design help me in my future career. I plan to go into software design developer. Can you think of any ways that I can apply the concepts to my future work? Thanks and Regards Baron Davis |
Bugatti veyron facts................. Posted: 22 Jun 2011 04:55 AM PDT |
Posted: 22 Jun 2011 04:46 AM PDT Yesterday was World Music Day Cheers to all music lovers Congratulations and thanks to all the people who have given us world of amazing music that makes us enjoy every moment of our life |
Posted: 22 Jun 2011 02:07 AM PDT friends, please post your online GATE test review here. :cean: |
Posted: 22 Jun 2011 02:03 AM PDT Friends, I am solving online practice tests for GATE. And in this thread, I will ask my doubts. I am looking for someone who can clarify them. Anyway's we can always discuss all GATE mechanical doubts here. :cean: |
Posted: 22 Jun 2011 01:49 AM PDT Hi everyone! I'm Kathrine and quite new here. Look forward to meeting all of you, and thanks for having me here |
Connect the brands & the logo with the Caricature.... Posted: 21 Jun 2011 11:19 PM PDT |
Posted: 21 Jun 2011 10:52 PM PDT Hi friends, does anybody know about how to implement Multi-hopping with Zigbee Pro. I need some information regarding with this. Could anybody help me on this? Thanks in advance. |
You are subscribed to email updates from CrazyEngineers Forum To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
No comments:
Post a Comment