8000 GitHub - bburrva/GitAndJavaBasics: We're going to write some classes!
[go: up one dir, main page]

Skip to content

bburrva/GitAndJavaBasics

 
 

Repository files navigation

#GitAndJavaBasics

This assignment is designed to flex our brand new class-writing skills. Before we get to that, though, take a moment to enjoy this animated gif of a man trying to feed some pigeons:

pigeonattack

Ok, back to the assignment.

Here are your tasks:

  1. Fork this repository.
  2. Clone your repository to your computer.
  3. Use IntelliJ to create 5 different classes. Each class should have at least 5 different variables. Get creative!

Example:

// Stores a single tweet.

public class Tweet {
    String text;
    String username;
    int timestamp;
    boolean isPrivate;
}

HARDMODE

Create the repository using your terminal first, then hook it up to your GitHub repository. I won't be able to tell that you did this, so just let me know what you did in the submission notes. Hint: It involves git remote

ULTRAMODE

Make a few methods inside each class that you created. In the main class, use instances of those objects to invoke those methods.

About

We're going to write some classes!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 92.4%
  • HTML 7.6%
0