PS: I LOVE Professor Paul Gries, his beard become more white now than then but still, he is THE best professor I have seen ever, not even one of. I will add defend this statement later more.

This UofT CS discussion board is interesting too.

Program

Run a program: translate a high-level programming language to a low-level machine language whose instructions can be executed

Translate:

  • Types:

          (1) Interpreted Language: (e.g. Python)
                      - translate and execute one statement at a time
            
          (2) Compiled Language: (e.g. C)
                      - compile the entire program (once), then execute(any number of times)
                        
          (3) Hybrid (e.g. Java)
                      - compile to someting intermediate(in Java, bytecode)
    

Variable

  1. need to declare a type for every variable as contrasted to Python where variable does not have a type and only object has

  2. got reserved a space in memory for every variable declared’s default value (default value will be given if not assigned specifically).

  3. static variable:

         - "static" in general describes properties (variables, methods) that belong to the class but not an instance of the class.
         - so static variables are common to all objects of the class, i.e. all instances of the class shares that one static                       variable which only exists as one copy of fixed location of memory address.  
         - static variable can be accessed with or without creating an instance
    
  4. instance variable

         - as constrasted to static variable, instance variable has separate locations of memory address for different  
           instances of the class, each instance has their own version 
              
         - Initialization:
                     * data structure type of variable like Array such as String[] will be nully initialized by default
    
  5. primitive type (What are the eight primitive types?)

         - byte
         - int
         - float
         - double
            
            
         - long
            
         - short
            
         - boolean
         - char
    

++first?

first++?

Methods

  • main method: - default arguments?

  • instance method

  • static method

          - static methods cannot access instance variables nor instance methods
          - static method cannot be accessed through "this" 
    
  • constructor

Class

  • subclass of the object class All classes are subclasses of Object class

  • any other class?

Abstract Class

  • Extensibility: - can be extended by concrete class

Some Interesting Class

String

  • is an Object, not a primitive data type, and immutable (cannot be changed once created – rather modified, a new one is created)

  • a String type variable holds the memory address of the object rather than the value of it, so == compares the memory address

          String a = new String("abcd");
          String b = new String("abcd");
          a == b returns false
            
          String c = "abcd";
          String d = "abcd";
          a == b returns true because compiler optimizes memory use when finding c and d have the same value therefore let them point to the same object
    

Reference: String Pool

        Methods:
        * indexing: iAmString.charAt(2)
        * substring: iAmString.substring(2, 4)
        * trimming: iAmString.trim() /*trim leading and trailing white spaces*/
  • has to use double quote " ", if it is single quote ' ', it represents the primitive date type char; if want to convert char into String, just do “”+’char’

Inheritance

  • declared variable types over-rule constructor type (confirm?)

Overloading

  1. Method Overloading is an example of Static Polymorphism

more than 1 method having the same name even when argument lists are different in the same class/public interface too?

a) the argument lists of the the methods differ either in number of parameters or data types of parameters

b) place counts as differences in parameters orders

for example

  int add(int, int)
  float add(int, int) differ in return types and will throw a compilation error
  1. Constructor Overloading

Unit Testing

JUnit is a Regression Testing Framework

  • Features

          Fixtures
          - a fixed state of a set of objects used as a baseline for running tests
    
  • assertTrue: parameter is a boolean

           assertTrue
    

public static void assertTrue(boolean condition)

Asserts that a condition is true. If it isn't it throws an AssertionError without a message.

Parameters:
    condition - condition to be checked

Read Input File

File object represents actual file/directory on the disk

        File(String pathname): creates a new File instance by converting the given pathname to  
        an abstract pathname (?what is an abstract pathname?)

Package

Override equals()

always has to override hashCode() as well at the same time Why always override hashcode() if overriding equals()?

Resources

Oracle Javadoc Tutorial

Java Walk-through

Oracle Java Tutorial Class Variables

Oracle Java Tutorial Subclasses

Questions

  1. what is static method

  2. what is JDK, JRE, JVM

  3. what is the difference between functions and methods

  4. what is .jar file, what is classpath?

  5. add JUnit5 to classpath?

  6. what is a Test Root?

  7. what is JUnit?

  8. need to compile class one by one in IntelliJ, there are dependencies existing between classes

  9. assertTrue

  10. when constructor does not initiate an instance variable then?

⤧  Previous post Recommender System and Case Studies ⤧  Next post Svm For Ranking