Learning Java Programming
the great courses living

Learning Java Programming

第 1 季
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.
202336 集TV-PG
免费试享 The Great Courses Living 或购买

相关条款适用

剧集

  1. 第 1 季第 1 集 - Welcome to Java!

    2023年10月31日
    7 分钟
    TV-PG
    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.
    免费试享 The Great Courses Living 或购买
  2. 第 1 季第 2 集 - Choose an Integrated Development Environment

    2023年10月31日
    8 分钟
    TV-PG
    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).
    免费试享 The Great Courses Living 或购买
  3. 第 1 季第 3 集 - Installing Android Studio for Mac

    2023年10月31日
    6 分钟
    TV-PG
    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.
    免费试享 The Great Courses Living 或购买
  4. 第 1 季第 4 集 - Installing Android Studio for Windows

    2023年10月31日
    15 分钟
    TV-PG
    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.
    免费试享 The Great Courses Living 或购买
  5. 第 1 季第 5 集 - Create Your First Java Program!

    2023年10月31日
    8 分钟
    TV-PG
    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!”
    免费试享 The Great Courses Living 或购买
  6. 第 1 季第 6 集 - Java Code Structure, Syntax, and main Method

    2023年10月31日
    7 分钟
    TV-PG
    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.
    免费试享 The Great Courses Living 或购买
  7. 第 1 季第 7 集 - Declaring Variable Types: int and String

    2023年10月31日
    13 分钟
    TV-PG
    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.
    免费试享 The Great Courses Living 或购买
  8. 第 1 季第 8 集 - Concatenating Variables in Java

    2023年10月31日
    6 分钟
    TV-PG
    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 Great Courses Living 或购买
  9. 第 1 季第 9 集 - Primitive Variable Types: boolean and char

    2023年10月31日
    11 分钟
    TV-PG
    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.
    免费试享 The Great Courses Living 或购买
  10. 第 1 季第 10 集 - Primitive Variable Types: byte, short, and long

    2023年10月31日
    8 分钟
    TV-PG
    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.
    免费试享 The Great Courses Living 或购买
  11. 第 1 季第 11 集 - Primitive Variable Types: float and double

    2023年10月31日
    6 分钟
    TV-PG
    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.
    免费试享 The Great Courses Living 或购买
  12. 第 1 季第 12 集 - Java Operators and Operator Precedence

    2023年10月31日
    17 分钟
    TV-PG
    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 %.
    免费试享 The Great Courses Living 或购买
  13. 第 1 季第 13 集 - The while Loop in Java

    2023年10月31日
    9 分钟
    TV-PG
    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).
    免费试享 The Great Courses Living 或购买
  14. 第 1 季第 14 集 - Java Branching Statements: if, if-else, and else-if

    2023年10月31日
    14 分钟
    TV-PG
    “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.
    免费试享 The Great Courses Living 或购买
  15. 第 1 季第 15 集 - Multiple Branches with the Java switch Statement

    2023年10月31日
    14 分钟
    TV-PG
    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.
    免费试享 The Great Courses Living 或购买
  16. 第 1 季第 16 集 - The do-while Loop and the for Loop in Java

    2023年10月31日
    14 分钟
    TV-PG
    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.
    免费试享 The Great Courses Living 或购买
  17. 第 1 季第 17 集 - Arrays in Java

    2023年10月31日
    25 分钟
    TV-PG
    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.
    免费试享 The Great Courses Living 或购买
  18. 第 1 季第 18 集 - Creating Objects in Java

    2023年10月31日
    10 分钟
    TV-PG
    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.”
    免费试享 The Great Courses Living 或购买
  19. 第 1 季第 19 集 - Class Constructors in Java

    2023年10月31日
    9 分钟
    TV-PG
    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.
    免费试享 The Great Courses Living 或购买
  20. 第 1 季第 20 集 - Methods: Passing Arguments, Returning Values

    2023年10月31日
    13 分钟
    TV-PG
    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.
    免费试享 The Great Courses Living 或购买
  21. 第 1 季第 21 集 - Java Getters and Setters

    2023年10月31日
    14 分钟
    TV-PG
    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.
    免费试享 The Great Courses Living 或购买
  22. 第 1 季第 22 集 - Using the String Class as a Reference Type

    2023年10月31日
    14 分钟
    TV-PG
    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.
    免费试享 The Great Courses Living 或购买
  23. 第 1 季第 23 集 - Java Inheritance: Overriding Parent Methods

    2023年10月31日
    20 分钟
    TV-PG
    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.
    免费试享 The Great Courses Living 或购买
  24. 第 1 季第 24 集 - Java Inheritance: Invoking Parent Methods

    2023年10月31日
    9 分钟
    TV-PG
    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.
    免费试享 The Great Courses Living 或购买
  25. 第 1 季第 25 集 - The Java Class Library

    2023年10月31日
    17 分钟
    TV-PG
    Comb through all the Java classes available to you as a programmer with this look at the Java Class Library. One of the many beauties of Java is this library of usable classes you can plug into your own classes, without having to write them yourself.
    免费试享 The Great Courses Living 或购买