About 5,370,000 results
Open links in new tab
  1. Reverse a string in Java - Stack Overflow

    I have "Hello World" kept in a String variable named hi. I need to print it, but reversed. How can I do this? I understand there is some kind of a function already built-in into Java that does th...

  2. I am currently working on Turbo c++ to be precise on c language

    Mar 12, 2021 · This is my program code: and the desired output is this (copied from https://www.javatpoint.com/c-gets-puts): and the output I am receiving is this I would be very ...

  3. What is the use of initialize object through three different ways in ...

    Feb 20, 2017 · FWIW that looks like a pretty poor tutorial - it's telling you things that you can do, without going through why you would do them or the pros and cons of doing so. And I can't …

  4. In Spring Boot what is the difference between CrudRepository and ...

    Apr 29, 2022 · when building respositories in spring, in my repository interface i extend it using the below extends CrudRepository<EntityName, EntityType> where EntityName is the name …

  5. Defining field and its data type as a MAP in application.yaml

    Oct 13, 2022 · Is it possible to define datatype for fields in application.yaml in spring boot? Eg: ingestiondata: NAME: String WEIGHT: Double DOB: Date Basically I want to externalize the …

  6. How to generate a WAR file for a Java project without Maven or …

    Nov 18, 2022 · A WAR file is a ZIP file with filename suffix .war and a specific internal structure as shown by the link szeak has given to you. So compile your project, create an empty folder, …

  7. What is the difference between JDK and JRE? - Stack Overflow

    Dec 15, 2009 · The JRE is the Java Runtime Environment. It is a package of everything necessary to run a compiled Java program, including the Java Virtual Machine (JVM), the …

  8. java - Where are the methods of the Iterator Interface actually ...

    Feb 17, 2022 · Following the hierarchy of the Collections Framework in Java, I struggle to understand where these 2 methods of the Iterator Interface are being implemented. boolean …

  9. Setting JAVA_HOME environment variable in MS Windows

    Set the JAVA_HOME Variable Windows 7 – Right click My Computer and select Properties > Advanced Windows 8 – Go to Control Panel > System > Advanced System Settings Windows …

  10. android - Beginning Programming: How do I pass an ArrayAdapter …

    Sep 12, 2020 · I am trying to understand what other alternative I have if I can't write this code: arrayAdapter = new ArrayAdapter(this, android.R.layout.simple_list_item_1,bluetoothDevices); …