Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
movie
- Page 1
Hi everyone, I'm Jason_70
Community Center
Say Hello!
2 Months Ago
by JasonMango
… for it all! Beyond coding, I'm also a huge
movie
buff. I love discussing films, sharing recommendations, and exploring the…
Re: Top industries that use automation
Programming
Software Development
2 Months Ago
by Reverend Jim
… voice of the Johnny-Cab in the original Total Recall
movie
was provided by the actor (Robert Picardo) who portrayed the…
Re: Top industries that use automation
Programming
Software Development
2 Months Ago
by Dani
… voice of the Johnny-Cab in the original Total Recall
movie
was provided by the actor (Robert Picardo) who portrayed the…
Re: Hi everyone, I'm Jason_70
Community Center
Say Hello!
2 Months Ago
by Dani
Hi Jason! Welcome to DaniWeb. What genre of movies are you into? I’m all about sci-fi/fantasy that makes you think. After sitting in a chair for 2 hours, I want to end up feeling like I got something out of it. It made me think about something in a different way, etc. My husband likes dumb comedy and it drives me crazy.
Re: Hi everyone, I'm Jason_70
Community Center
Say Hello!
2 Months Ago
by Reverend Jim
>I’m all about sci-fi/fantasy that makes you think Definitely give [The Man From Earth](https://www.imdb.com/title/tt0756683/) a go. You can watch it for free on youtube. I'm always up for discussions on movies, good or bad.
Re: Hi everyone, I'm Jason_70
Community Center
Say Hello!
2 Months Ago
by Dani
> So, a Spaceballs fan? Oh, of course! That and Galaxy Quest. :-P
Re: Hi everyone, I'm Jason_70
Community Center
Say Hello!
2 Months Ago
by Reverend Jim
>So, a Spaceballs fan Hated Spaceballs. Loved Galaxy Quest. I find most Mel Brooks comedy to be too low brow, with the exception of Young Frankenstein and Blazing Saddles.
Re: Hi everyone, I'm Jason_70
Community Center
Say Hello!
2 Months Ago
by Salem
> And of course the line "Would you like some toast?" -Talky Toaster, everyone's favorite breakfast companion. Aah, so you're a waffle man.
Re: Hi everyone, I'm Jason_70
Community Center
Say Hello!
2 Months Ago
by Reverend Jim
I like movies that don't insult my intelligence. Aside from the frequent spoilers I find that the [Pitch Meeting](https://www.youtube.com/results?search_query=pitch+meeting) videos do a great job of pointing out the ways in which modern action movies prioritize action and spectacle over anything resembling good writing. [10 Ways Star Trek Just …
Re: Custom Media Server
Hardware and Software
Linux and Unix
1 Month Ago
by Vince_6
I used Plex and a Mac for years to stream to my TV. When I switched to linux, PLex ran but couldn't find my media directories. I finally found a product called Emby. It has a server that runs and aps for many different divices. It even has one for my FireTV. Works great.
Movie and Cinema class
Programming
Software Development
16 Years Ago
by janamrob
… public static void main(String args []) {
Movie
mv= new
Movie
("",""); mv.toString(); }… } } public void showMovie() { try {
Movie
mv = new
Movie
("",""); String mRating = mv.…
Re: Movie and Cinema class
Programming
Software Development
16 Years Ago
by janamrob
…float cost; String Title,humans; ArrayList mGoers; //instantiating
Movie
class
Movie
mv = new
Movie
("",""); String mRating = mv.getRating();… } else // Adults, that is age>18 {
Movie
movieNew = new
Movie
("Title","Rating"); try { if (!isObjectEmpty…
Re: Movie and Cinema class
Programming
Software Development
16 Years Ago
by janamrob
…String Title,humans; ArrayList mGoers; //instantiating
Movie
class
Movie
mv = new
Movie
("",""); String mRating = … // Adults, that is age>18 {
Movie
movieNew = new
Movie
("Title","Rating"); try { …
Movie Data
Programming
Software Development
14 Years Ago
by usafsatwide
…named MovieData to store the following information about a
movie
: Title Director Year Released Running Time (in minutes)…in minutes cout << "Enter runtime of the
movie
in minutes: "; cin >> m2.minutesRunning;… } void MovieDisplay(MovieData m1, m2) { //Display the
movie
information cout << "Below is the data of…
Re: Movie Data
Programming
Software Development
14 Years Ago
by usafsatwide
…n"; cout << "Second
Movie
\n\n"; //Get
movie
title cout << "Enter the…n"; cout << "First
Movie
"; //Display the
movie
information cout << "\n\nBelow is…n"; cout << "Second
Movie
"; //Display the
movie
information cout << "\n\nBelow is…
Re: Movie and Cinema class
Programming
Software Development
16 Years Ago
by janamrob
the classes are separate. Look at this, //
Movie
class //Cinema class //Family class // MovieRating class Shows you where each class starts. In my implementation they are all separate, I hope that's okay.
Re: Movie and Cinema class
Programming
Software Development
16 Years Ago
by stultuske
[QUOTE=janamrob;713759]the classes are separate. Look at this, //
Movie
class //Cinema class //Family class // MovieRating class Shows you where …
Re: Movie and Cinema class
Programming
Software Development
16 Years Ago
by javaAddict
And to start, after a quick look, in your
Movie
class, you have: String movieRating private String title private String mrating You use mrating at the constructor and movieRating at the set, get methods. Use only one of them in your class
Re: Movie and Cinema class
Programming
Software Development
16 Years Ago
by javaAddict
… a setMovie method which takes a
Movie
as an argument.[/QUOTE] You should have a
Movie
attribute in your class that is… by the argument of the above method. Then treat this
Movie
like any other attribute in your methods: showMovie() should show…
Re: Movie and Cinema class
Programming
Software Development
16 Years Ago
by janamrob
that's okay, How do I check that the
movie
property has been set and if not throw an exception in the addMovieGoers() method?
Re: Movie and Cinema class
Programming
Software Development
16 Years Ago
by javaAddict
[QUOTE=janamrob;713829]that's okay, How do I check that the
movie
property has been set and if not throw an exception in the addMovieGoers() method?[/QUOTE] Use 'if' and 'throw' statements
Re: Movie and Cinema class
Programming
Software Development
16 Years Ago
by janamrob
I'm stuck in the Cinema class addMovieGoers method. How do I change my code to do the following: [I]check that every member of the collection is a human and that they are old enough to watch the
movie
, if not throw an exception[/I] [U]Add another static method to the cinema class that demonstrates the usage of the cinema class.[/U]
Re: Movie and Cinema class
Programming
Software Development
16 Years Ago
by javaAddict
Since there have been many changes to the code post the latest Cinema class. I believe that the human class has a method getAge(). Use it to get the age, use the rating of the
movie
to get the minimum age and compare these two. You also have written a MRating class with a hashMap. You can use that.
Re: Movie and Cinema class
Programming
Software Development
16 Years Ago
by javaAddict
… class and do it all over again. You will a
Movie
attribute in the class. You will not instantiate it but… the Human argument you will get the age. From the
movie
attribute (if it is set) you will get the rating… don't need the isEmptyObject method. Just check if the
movie
is null or if their attributes are set (if they…
Movie Data structure
Programming
Software Development
15 Years Ago
by mandofl
…is to write a program that uses a structure named
movie
data to store the following, title, director, year released…<< endl; cout << "Director of the
movie
: " << first.movieDirector << endl; cout…<< endl; cout << "Director of the
movie
: " << second.movieDirector << endl; cout…
Re: Movie Data structure
Programming
Software Development
15 Years Ago
by mandofl
…quot;; //Display data stored for the first
movie
. cout << "
Movie
Tittle: " << first.…quot;; //Display data stored for the second
movie
. cout << "
Movie
Title: " << second.movieTitle…lt; endl; cout << "Director of the
movie
: " << second.movieDirector << endl;…
Re: Movie Data structure
Programming
Software Development
15 Years Ago
by mustafaneguib
…; //Array size-> struct Moviedata{ string movieTitle; //
Movie
Title-> i have used string data type because it…void printData(Moviedata *object) { cout << "
Movie
Tittle: " << object->movieTitle <<…; endl; cout << "Director of the
movie
: " << object->movieDirector <<…
Movie Database SQL Code Help
Programming
Databases
11 Years Ago
by jdm
… on f.`Code`=mf.FormCode; output: Ghost in the Shell
Movie
1 01:23:00 Bluray Ghost in the Shell… on g.`Code`=mg.GenCode; output: Ghost in the Shell
Movie
1 01:23:00 Cyberpunk Ghost in the Shell…
movie catalog
Programming
Software Development
17 Years Ago
by angel143
…;"" is already in the catalog") Else AddMovie(
movie
) DisplayMovies() titleBox.Text = "" numMoviesLabel.Text =… While End If End While movieList(i + 1) =
movie
End If End Sub Private Sub DisplayMovies() catalogBox.Text = …
Re: Movie Data structure
Programming
Software Development
15 Years Ago
by Nick Evan
… turn to a function that displays the information about the
movie
in a clearly formatted manner. [/QUOTE] You did not yet…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC