Learning Java Programming
the great courses living

Learning Java Programming

Prueba gratis de The Great Courses Living o compra

Aplican condiciones

In Learning Java Programming, learn how to write computer programs in Java and how everyday programmers use this language to build desktop graphical user interfaces (GUIs) and mobile applications for Android devices. These hands-on lectures reveal not just how Java works, but some of the many insider tips and tricks programmers use to create and solve problems.
2023Una temporada
2023Una temporada
TV-PG
36 episodios
  • 1. Welcome to Java!

    1. Welcome to Java!

    Discover what makes Java one of the most popular programming languages out there. After an overview of how Java works, learn the meanings and applications of terms like Java Virtual Machine, integrated development environment, and Java bytecode.
    Discover what makes Java one of the most popular programming languages out there. After an overview of how Java works, learn the meanings and applications of terms like Java Virtual Machine, integrated development environment, and Java bytecode.
    TV-PG
    7 min
    31 oct 2023
  • 2. Choose an Integrated Development Environment

    2. Choose an Integrated Development Environment

    Think of integrated development environments (IDEs) as code editors with everything programmers need to write code. Get insights into three IDEs: IntelliJ IDEA (used to write programs in multiple languages), NetBeans (which simplifies app development), and Android Studio (the app-friendly IDE used in rest of this course).
    Think of integrated development environments (IDEs) as code editors with everything programmers need to write code. Get insights into three IDEs: IntelliJ IDEA (used to write programs in multiple languages), NetBeans (which simplifies app development), and Android Studio (the app-friendly IDE used in rest of this course).
    TV-PG
    8 min
    31 oct 2023
  • 3. Installing Android Studio for Mac

    3. Installing Android Studio for Mac

    For Mac users: Discover how to properly install Android Studio—the tool you’ll be using to learn Java and, later in the course, build an Android app. This lesson covers the step-by-step installation process.
    For Mac users: Discover how to properly install Android Studio—the tool you’ll be using to learn Java and, later in the course, build an Android app. This lesson covers the step-by-step installation process.
    TV-PG
    6 min
    31 oct 2023
  • 4. Installing Android Studio for Windows

    4. Installing Android Studio for Windows

    For Windows users: Discover how to properly install Android Studio, the tool you’ll be using to learn Java and, later in the course, build an Android app. This lesson covers the step-by-step installation process.
    For Windows users: Discover how to properly install Android Studio, the tool you’ll be using to learn Java and, later in the course, build an Android app. This lesson covers the step-by-step installation process.
    TV-PG
    15 min
    31 oct 2023
  • 5. Create Your First Java Program!

    5. Create Your First Java Program!

    Crack your knuckles and get ready to create your first Java program inside Android Studio. Learn how to build a program that prints out specific messages: “Hello World” and “Java programming is fun!”
    Crack your knuckles and get ready to create your first Java program inside Android Studio. Learn how to build a program that prints out specific messages: “Hello World” and “Java programming is fun!”
    TV-PG
    8 min
    31 oct 2023
  • 6. Java Code Structure, Syntax, and main Method

    6. Java Code Structure, Syntax, and main Method

    Take a closer look at the "print" program you created in the previous lesson. Topics you’ll cover here include package keywords, classes (which must go within a pair of curly braces), and the critical importance of basic syntax for your code to run properly.
    Take a closer look at the "print" program you created in the previous lesson. Topics you’ll cover here include package keywords, classes (which must go within a pair of curly braces), and the critical importance of basic syntax for your code to run properly.
    TV-PG
    7 min
    31 oct 2023
  • 7. Declaring Variable Types: int and String

    7. Declaring Variable Types: int and String

    Variables are essential in computer programming because they make it much easier for programmers to output data that can be passed on to another method for further processing. Learn how to declare and specify String and int (integer) variables.
    Variables are essential in computer programming because they make it much easier for programmers to output data that can be passed on to another method for further processing. Learn how to declare and specify String and int (integer) variables.
    TV-PG
    13 min
    31 oct 2023
  • 8. Concatenating Variables in Java

    8. Concatenating Variables in Java

    The act of putting strings together into one long string is known as concatenation. Exercises in this lesson include creating several String and int variables with assigned values, and writing a short story about yourself using variables in Java.
    The act of putting strings together into one long string is known as concatenation. Exercises in this lesson include creating several String and int variables with assigned values, and writing a short story about yourself using variables in Java.
    TV-PG
    6 min
    31 oct 2023
  • 9. Primitive Variable Types: boolean and char

    9. Primitive Variable Types: boolean and char

    There are eight primitive variable types in Java, each of which has a set number of data bits it can hold. Dichone introduces you to the boolean primitive, which can only hold either 1 or 0 (true or false), and the char primitive, which represents one character only.
    There are eight primitive variable types in Java, each of which has a set number of data bits it can hold. Dichone introduces you to the boolean primitive, which can only hold either 1 or 0 (true or false), and the char primitive, which represents one character only.
    TV-PG
    11 min
    31 oct 2023
  • 10. Primitive Variable Types: byte, short, and long

    10. Primitive Variable Types: byte, short, and long

    Explore additional primitive variable types. A byte holds eight bits and is commonly used in instances where you need a small container for data. A short holds 16 bits, and makes a great mid-sized container. And a long, at 64 bits, is best for larger numbers.
    Explore additional primitive variable types. A byte holds eight bits and is commonly used in instances where you need a small container for data. A short holds 16 bits, and makes a great mid-sized container. And a long, at 64 bits, is best for larger numbers.
    TV-PG
    8 min
    31 oct 2023
  • 11. Primitive Variable Types: float and double

    11. Primitive Variable Types: float and double

    So far, you’ve learned how to express whole numbers of varying sizes. What about decimal numbers? That’s where a float or double comes in. The first holds any number with a few decimal places, and the second is best used to express decimals with more precision.
    So far, you’ve learned how to express whole numbers of varying sizes. What about decimal numbers? That’s where a float or double comes in. The first holds any number with a few decimal places, and the second is best used to express decimals with more precision.
    TV-PG
    6 min
    31 oct 2023
  • 12. Java Operators and Operator Precedence

    12. Java Operators and Operator Precedence

    Understanding how operator precedence works in Java is crucial, because you could end up with the wrong result—even though you’ve plugged in the right numbers. Learn how to effectively work with mathematical operators like + and * and / and %.
    Understanding how operator precedence works in Java is crucial, because you could end up with the wrong result—even though you’ve plugged in the right numbers. Learn how to effectively work with mathematical operators like + and * and / and %.
    TV-PG
    17 min
    31 oct 2023
  • 13. The while Loop in Java

    13. The while Loop in Java

    Loops help programs repeat tasks until a final condition is met. Here, learn how to build and use while loops in your program and get tips on avoiding the danger of creating an infinite loop that will run forever (or at least until your computer runs out of memory).
    Loops help programs repeat tasks until a final condition is met. Here, learn how to build and use while loops in your program and get tips on avoiding the danger of creating an infinite loop that will run forever (or at least until your computer runs out of memory).
    TV-PG
    9 min
    31 oct 2023
  • 14. Java Branching Statements: if, if-else, and else-if

    14. Java Branching Statements: if, if-else, and else-if

    “If you have less than $1,000 in your bank account, you should not go to Las Vegas.” How do we express this statement in code? Learn how to branch programs using if, if-else, and else-if statements to evaluate conditional expressions and decide what to run.
    “If you have less than $1,000 in your bank account, you should not go to Las Vegas.” How do we express this statement in code? Learn how to branch programs using if, if-else, and else-if statements to evaluate conditional expressions and decide what to run.
    TV-PG
    14 min
    31 oct 2023
  • 15. Multiple Branches with the Java switch Statement

    15. Multiple Branches with the Java switch Statement

    In programming cases where you have more than two possible conditions, a switch statement is your best friend, as it can test for a variety of different conditions and respond accordingly. In this lesson, try your hand at using switch statements.
    In programming cases where you have more than two possible conditions, a switch statement is your best friend, as it can test for a variety of different conditions and respond accordingly. In this lesson, try your hand at using switch statements.
    TV-PG
    14 min
    31 oct 2023
  • 16. The do-while Loop and the for Loop in Java

    16. The do-while Loop and the for Loop in Java

    Gain working familiarity with do-while and for loops. With the former, the statements inside the loop are executed at least once (even if the loop condition is false). With the latter, you can repeat a section of a program a fixed number of times.
    Gain working familiarity with do-while and for loops. With the former, the statements inside the loop are executed at least once (even if the loop condition is false). With the latter, you can repeat a section of a program a fixed number of times.
    TV-PG
    14 min
    31 oct 2023
  • 17. Arrays in Java

    17. Arrays in Java

    Unlike variables, arrays store a collection of related variables that share the same type. Here, learn to think of arrays in Java as containers that hold smaller containers inside them and get tips on how to master their flexibility in programming.
    Unlike variables, arrays store a collection of related variables that share the same type. Here, learn to think of arrays in Java as containers that hold smaller containers inside them and get tips on how to master their flexibility in programming.
    TV-PG
    25 min
    31 oct 2023
  • 18. Creating Objects in Java

    18. Creating Objects in Java

    In programming, objects are the building blocks of tasks that you can plug into a bigger system. Explore the various components that go into creating objects, from creating a blueprint (class) to using "methods" to express particular object “behaviors.”
    In programming, objects are the building blocks of tasks that you can plug into a bigger system. Explore the various components that go into creating objects, from creating a blueprint (class) to using "methods" to express particular object “behaviors.”
    TV-PG
    10 min
    31 oct 2023
  • 19. Class Constructors in Java

    19. Class Constructors in Java

    Constructors are methods that construct your object so that, when it’s instantiated, the object is not just empty and useless. In this lesson, take a closer look at how to work with constructors using the same code from the previous lesson.
    Constructors are methods that construct your object so that, when it’s instantiated, the object is not just empty and useless. In this lesson, take a closer look at how to work with constructors using the same code from the previous lesson.
    TV-PG
    9 min
    31 oct 2023
  • 20. Methods: Passing Arguments, Returning Values

    20. Methods: Passing Arguments, Returning Values

    In this lesson on methods (code blocks where you can have statements and in which you can write your logic), learn through several helpful exercises how to work with important method-related keywords like main, public, static, and void.
    In this lesson on methods (code blocks where you can have statements and in which you can write your logic), learn through several helpful exercises how to work with important method-related keywords like main, public, static, and void.
    TV-PG
    13 min
    31 oct 2023
  • 21. Java Getters and Setters

    21. Java Getters and Setters

    How can you protect your classes from catastrophic programming mistakes? How do getters and setters actually force you to set up your class properties in more secure ways? Should getters and setters be marked private or public? Find out here.
    How can you protect your classes from catastrophic programming mistakes? How do getters and setters actually force you to set up your class properties in more secure ways? Should getters and setters be marked private or public? Find out here.
    TV-PG
    14 min
    31 oct 2023
  • 22. Using the String Class as a Reference Type

    22. Using the String Class as a Reference Type

    String, just one of the thousands of classes that come prepacked in Java, is a class you can instantiate into an object. In this lesson, explore some of the many nuances of using the String class as a reference type in your own coding work.
    String, just one of the thousands of classes that come prepacked in Java, is a class you can instantiate into an object. In this lesson, explore some of the many nuances of using the String class as a reference type in your own coding work.
    TV-PG
    14 min
    31 oct 2023
  • 23. Java Inheritance: Overriding Parent Methods

    23. Java Inheritance: Overriding Parent Methods

    Inheritance in Java involves the creation of a hierarchy of classes that inherit the behaviors of other classes. Discover how to override behaviors of the parent class (the super class) so that your subclass implements its own version of that behavior.
    Inheritance in Java involves the creation of a hierarchy of classes that inherit the behaviors of other classes. Discover how to override behaviors of the parent class (the super class) so that your subclass implements its own version of that behavior.
    TV-PG
    20 min
    31 oct 2023
  • 24. Java Inheritance: Invoking Parent Methods

    24. Java Inheritance: Invoking Parent Methods

    What happens when you still want to invoke your superclass’s method inside of a subclass? Dichone teaches you how to do just that in this second lesson on Java inheritance that’s all about the power of the super keyword.
    What happens when you still want to invoke your superclass’s method inside of a subclass? Dichone teaches you how to do just that in this second lesson on Java inheritance that’s all about the power of the super keyword.
    TV-PG
    9 min
    31 oct 2023
  • Learning Java Programming
    2023Una temporada
    In Learning Java Programming, learn how to write computer programs in Java and how everyday programmers use this language to build desktop graphical user interfaces (GUIs) and mobile applications for Android devices. These hands-on lectures reveal not just how Java works, but some of the many insider tips and tricks programmers use to create and solve problems.
    Creadores y elenco
    Productores
    The Great Courses
    Elenco
    Paulo Dichone
    Estudio
    The Great Courses
    Opiniones
    1. 5 estrella
      0%
    2. 4 estrella
      0%
    3. 3 estrella
      0%
    4. 2 estrella
      0%
    5. 1 estrella
      0%
    Ver todas las opiniones
    Advertencias de contenido
    TV-PG
    luces intermitentes
    Idiomas de audio
    English
    Subtítulos
    English [CC]
    Al hacer un pedido o ver títulos, aceptas nuestros Términos. Vendido por Amazon.com Services LLC.

    Comentarios