COS 212 Resources

COS 212 Resources

  • Docs

›Java Crash Course

Getting Started

  • Introduction
  • Installing Linux
  • Development Environment

Java Crash Course

  • Hello World
  • Compiling and Running
  • Makefile
  • Comments
  • Variables and Types
  • Operators
  • Slides

Tools

  • Version Control
  • Hello World with Git

Notes

  • Self Organising Lists

Operators

// Shorthand assignment and declaration
int x, y, z = 1;

// Compound assignment operators
x += 1;
x -= 2;
x *= 3;
x /= 4;

// Pre and post operators
x++;
++x;
Last updated on 2/9/2019 by Evert Geldenhuys
← Variables and TypesSlides →
COS 212 Resources
Docs
Getting Started
GitHubStar
Facebook Open Source
Copyright © 2019 Evert Geldenhuys