Giter Club home page Giter Club logo

gr8workshops-content's People

Contributors

craigatk avatar jlstrater avatar sabersd avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

gr8workshops-content's Issues

Puzzler: Capitalized file name matching Class name

In class "Intro to Groovy", I saved my Person class from the console to the file Person.groovy. When I ran:

$ groovy Person.groovy

it threw the following exception:

org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
/Users/tamara/Projects/groovy-stuff/Person.groovy: 1: Invalid duplicate class definition of class Person : The source /Users/tamara/Projects/groovy-stuff/Person.groovy contains at least two definitions of the class Person.
One of the classes is an explicit generated class using the class statement, the other is a class generated from the script body based on the file name. Solutions are to change the file name or to change the class name.
 @ line 1, column 1.
   class Person {
   ^

1 error

A bit of a puzzler. The "fix" is to make the filename not match the class name.

$ mv Person.groovy person.groovy
Person.groovy -> person.groovy

tamara@pontiki2:~/Projects/groovy-stuff:2016-06-18@11:27:02
$ groovy person.groovy 
[class:class Person, first:big, company:null, last:deal]
[class:class Person, first:big, company:yolo, last:deal]
big deal at yolo

This is the code:

class Person {
String first
String last
String company

String toString() {
  "$first $last at $company".toString()
}

}

Person me = new Person(first: "big", last: "deal")
println me.properties
me.company = "yolo"
println me.properties
println me.toString()

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.