sex one slide summary religion
play

Sex, One-Slide Summary Religion, Languages may change way we - PDF document

Sex, One-Slide Summary Religion, Languages may change way we think. Java is verbose and object-oriented . Politics, An object packages state and procedures. Java A procedure on an object is called a method . We invoke a method by


  1. Sex, One-Slide Summary Religion, • Languages may change way we think. • Java is verbose and object-oriented . Politics, • An object packages state and procedures. Java • A procedure on an object is called a method . We invoke a method by sending the object a message . • Inheritance allows one object to refine and reuse the behavior of another. This is a good thing. • To evaluate a name, walk up the frames until you find a definition. • A golden age is a period when knowledge or quality increases rapidly. #1 #2 Why Learn New Languages? Why Learn New Languages? • Languages change the way we think. • Deepening Understanding – The linguistic relativity principle (also known as – By seeing how the same concepts we encountered the Sapir-Whorf Hypothesis ) is the idea that the in Scheme are implemented by a different varying cultural concepts and categories inherent language, you will understand those concepts in different languages affect the cognitive better (especially procedures, assignment, and classification of the experienced world in such a data abstraction). way that speakers of different languages think and • Building Confidence behave differently because of it. Roger Brown has drawn a distinction between weak linguistic – By learning Java (mostly) on your own, the next relativity, where language limits thought, and time you encounter a problem that is best solved strong linguistic relativity, where language using a language you don't know, you will be determines thought. [Wikipedia] confident you can learn it (rather than trying to • See also: Orwell's 1984 use the wrong tool to solve the problem.) #3 #4 Java Why Learn New Languages • Java is a universal programming language . – Everything you can compute in Python you can • Fun! Programming in can be Java is fun. compute in Java, and vice versa • Especially because: – PS 7: implement a Python interpreter in Java – It is commonly-used to solve real-world problems. – Chapter 12: more formal definition of a universal – It is well-suited to group work. programming language – It makes it easy to catch errors in advance. • Java is an imperative language . – It is strongly object-oriented. – Designed to support programming where most of – They were going to name it “Oak” after the tree the work is done using assignment statements outside the office window, but that was already – x = sqrt(4) + 1; trademarked. #5 #6

  2. Objectifying Java Learning New Languages • Java is also an object-oriented language . • Syntax : Where the {, !, (, :, etc., all go – Objects encapsulate state (i.e., variables and – If you can understand a BNF grammar, this is easy information) and the methods that operate on – But it still takes some getting used to that state together. • Semantics : What does it mean? – In Java, almost all data are objects. – Learning the evaluation rules – Problem Set 6 covers programming with objects. – This is harder, but most programming languages – Java has built-in support for classes, methods and have very similar rules (with subtle differences) inheritance. • Style : What are the idioms and customs? – Many years to be a “professional” Java programmer, but not long to write a program #7 #8 Java If Java If Example • Instruction ::= if (this_one > best_sofar) { if ( Expression ) { System.out.println(“This one is better!”); Block } else { } else { Block System.out.println(“Not better!”); } } • Semantics: Evaluate the Expression (which must be a Boolean). If it evaluates to a true value, evaluate the first Block . Otherwise, evaluate the second Block . • You can omit else { ... } #9 #10 Learning Java Making Objects • We will introduce (usually informally) Java ClassDefinition ::= public class Name { constructs in class as we use them (and in FunctionOrFieldDefinitions example code in PS5 and PS6) } • The “Java Lab Guide” is a video introduction public class Dog { to Java and Eclipse: public static void bark() { – Java : Eclipse :: Python : PyCharm System.out.println(“wuff wuff wuff”); – Covers what you need for PS5. } • On-line Java documentation } In Washington, it's dog eat dog. In academia, it's exactly the opposite. - Robert Reich #11 #12

  3. Making a Dog Java Procedures (= Methods) public class Dog { public static void bark() { Expression ::= new ClassName ( args ) public class Dog { System.out.println(“wuff wuff wuff”); public static void bark() { } } System.out.println(“wuff wuff wuff”); MethodDefinition ::= Modifiers Type Name ( Params ) Block } } Params ::= SomeParams | epsilon SomeParams ::= Type Name | Type Name , SomeParams ... Block ::= { Statements } Dog spot = new Dog(); Statements ::= Statement ; MoreStatements MoreStatements ::= epsilon In Java, you must declare a variable with its type | Statement ; MoreStatements before you give it a value. #13 #14 Barking: Invoking Methods Some Java Procedures ApplicationStmt ::= Expr . Name ( Args ) int square(int x) { int bigger(int a, int b) { Args ::= epsilon | MoreArgs MoreArgs ::= Argument , MoreArgs return x*x; if (a > b) | Argument public class Dog { } return a; Argument ::= Expr public static void bark() { else return b; } System.out.println(“wuff wuff wuff”); int biggest(int [] lst) { } } int biggest = lst[0]; ... for (int i = 1; i < lst.length; i = i + 1) Dog spot = new Dog(); if (lst[i] > biggest) biggest = lst[i]; spot.bark(); // Invoke bark on spot return biggest; wuff wuff wuff wuff } #15 #16 Liberal Arts Trivia: Art History and Object Lingo American Literature • “Apply a procedure” = “Invoke a method” • Give the Renaissance master (or Ninja Turtle) • We apply a procedure to parameters. associated with each work of art: • We invoke a method on an object, and pass in (b) Mona Lisa (d) Transfiguration parameters. – Inside a method you can also see the object itself (sometimes called the self parameter). (c) Pieta (a) Tomb of Antipope John XXIII #17 #18

  4. Liberal Arts Trivia: Polish History, Liberal Arts Trivia: Cooking Chemistry, and Physics • This physicist and chemist of Polish • This Japanese delicacy is vinegared rice, upbringing and French citizenship was the usually topped with other ingredients, first person honored with two Nobel prizes, including fish. The dish as we know it today the first woman to win a Nobel prize, and the was invented as a fast food by Hanaya Yohei first woman to serve as a professor at the at the end of the Edo period (19 th century) in University of Paris. The world's first studies Tokyo: it could be eaten on the road side or into the treatment of cancers using in a theatre using fingers or chopsticks. The radioactive isotopes were conducted under basic idea can be traced back to 4 th century her direction. BCE China as a preservative: the fermentation of the rice prevents the fish from spoiling. #19 #20 Dogs with Names Review: Making a Dog public class Dog { public String name; // Field (= State) public Dog(String n) { // Constuctor public class Dog { name = n; // Initialize Field Public void bark() { } public void bark() { // Method System.out.println(“wuff wuff”); println(name + “says wuff!”); } } } // Methods can see fields (like name)! ... } Dog myDog = new Dog(“Spoticus”); // “new” calls Constructor, returns new object ... myDog.bark(); // Invoke Method Spoticus says wuff! Dog spot = new Dog(); // spot has type Dog Dog yourDog = new Dog(“Ginger”); // Not all objects have the same state! yourDog.bark(); You must declare the type first! Ginger says wuff! #21 #22 Java “Lists” Implementing square_each in Java • Python has a built-in datatype for a list of def square_each (lst): fixed length. It is called “array”, written []. for i in range(len(lst)): int [] myArray = {8,6,7}; lst[i] = lst[i] * lst[i] # imperative! println(myArray[0]); 1 • Let's do a literal translation of this into Java. println(myArray.length); 3 String [] myNames = {“Wes”,”Weimer”}; println(myNames[1]); Weimer #23 #24

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend