Good Books/Tutorials

I have a firm grasp on objects, abstract classes, and interface, as well as inheritance and encapsulation. I understand the concepts and whatnot.
The problem is that when I think about writing a program using these concpets I have difficulties. Not because I don't know how to implement them, but because I'm unsure how to relate interfaces and abstract classes to the project.
In the examples that I've read, they use Animals, Shapes, and whatnot. The desings seem intuitive, but what about real programs...
Can anyone give me a good tutorial or book that would help me?
Thank You

I have a firm grasp on objects, abstract classes, and
interface, as well as inheritance and encapsulation.
I understand the concepts and whatnot. I used to think the same way before comming to this forum. But I am still learning these concepts.
Probably you would be in the same phase.
Search on this forum, you would be finding a lots of beautiful matters.
For example see this thread:
http://forum.java.sun.com/thread.jspa?threadID=789900
It is a very basic example, but you could get marvelous things if you search.
The problem is that when I think about writing a
program using these concpets I have difficulties. Not
because I don't know how to implement them, but
because I'm unsure how to relate interfaces and
abstract classes to the project.basically, the concept behind interfaces and abstract classes is generalization.
They make up a contract, and any class could implement that contract.
I think you should read about "Design patterns", these are commonly followed programming techniques for specific scenarios, you have to just identify your scenario.
"Java Design Patterns" by James W Cooper. is a good book for that.
In the examples that I've read, they use Animals,
Shapes, and whatnot. The desings seem intuitive, but
what about real programs...No body is going to code for you! You have to code by your own (that's what for you get paid). You can request for help, but don't rely on others for getting your problem solved.
Can anyone give me a good tutorial or book that would
help me?Read "Programmer's Guide to Java� Certification" by khalid A. Mughal" Really nice book for clearing concepts.
Don't read this book-> feel it, work with it.
Once I read this whole book in one day (can you believe it). But I didn't got anything out of it. I thaught it is a worthless book.
But then one of my friend told said the same sentence to me that I mentioned above, Now I am not reading it, I am feeling it. Its been 2 weeks, and I havn't even completed half of the book.
Well I think now I am booring you all. So I shut up my mouth.
Thank YouYour welcome dear!

Similar Messages

  • Good Books/Tutorials on SAP and its different modules

    Hi,
    I need to know some of the good books and online tutorials on SAP :-
    1. MM
    2. FI
    3. Basis
    Thanks & Regards,
    Andrew

    Hi,
    You can search for books at [SAP Press|http://www.sappressbooks.com/index.cfm?account=].
    MM:
    Online Help:
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/9c/df293581dc1f79e10000009b38f889/frameset.htm
    http://www.sap-img.com/sap-mm.htm
    FI:
    Onlne help:
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/38/e34434c0df0c6ee10000009b38f83b/frameset.htm
    http://www.erpgenie.com/sapfunc/fi.htm
    Basis:
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/ca/6fbd35746dbd2de10000009b38f889/frameset.htm
    http://www.erpgenie.com/sap/basis/
    http://www.sap-img.com/
    Regards,
    Srilatha.

  • Is there any good books/tutorials that describe

    building PDF Portfolio Navigators via Flash Builder / ActionScript ?

    Hi all,
    Is there any good books on programming using weblogic 8?Amazon has these:
    http://www.amazon.com/exec/obidos/search-handle-url/ref=br_ss_hs/104-7910591-0562341?platform=gurupa&url=index%3Dblended&field-keywords=weblogic&Go.x=0&Go.y=0&Go=Go
    Is there any site address for recommendations?What's wrong with the BEA site for info?
    %

  • Reports 6i Books/tutorials

    Hi,
    Can you recommend any good books/tutorials for Oracle Reports 6i for beginners ?
    Thanks in advance.
    Ed

    Hi Sandy,
    I don't know of any book that will teach you how to build a report manually. I used to teach this 'manual build' as an additional section to the course. However, it is going to be very lengthly when written in words. It is far easier to demonstrate this visually, but here goes.....
    When I said 'to build reports manually' - I am referring to the report layout specifically. Once you understand how it is put together, you will be able to build it manually. So, the best way to learn to build a report manually is to reverse engineer and pull one report apart.
    Use the wizard to build a tabular report on the emp table from the Scott/tiger schema: e.g. Select ename, job, sal from emp. As a Tabular report has the simplest layout, it is also the easiest to learn. You can progress to a group or matrix report at a later time.
    Once you have a completed Tabular report, go the layout model. This is where you need to pull the report apart. What I mean is:
    (1) Enlarge and move the most outer Frame.
    (2) Enlarge and move the 'Repeating' frame which hold the data objects.
    (3) Enlarge and move the frame which hold the headings.
    The concept to remember is that all the data objects (ename, job, sal) are residing within a repeating frame (Please note that there is a down arrow at the left hand corner of the frame) - this means that every row returned by the query will use this repeating frame once. So if 14 rows are returned, you will see 14 instances of the obects in the repeating frame.
    The headings (Ename, Job and Sal are just Boiler plate text) also reside in a frame (note that it is not a repeating frame).
    Both of these 2 frames reside on another outer frame - you may call it the mother of all frames and this is the most outer frame. Now, back to doing some work....
    To do point 1....
    Select one of the objects - eg sal. Then click on the 'Select Parent Frame' icon tool several times so that the focus is on the most outer parent frame. Drag to enlarge the frame so that there is plenty of space to move object around. If you cannot drag to enlarge, you have not got to the most outer parent frame. If you are successful, you can begin to do other things.
    To do point 2...
    Select one of the data objects - eg sal data object. Then click on the 'Select Parent Frame' icon tool ONCE only so that the focus is on the repeating frame. Drag to enlarge the frame so that there is plenty of space to move object around. If you cannot drag to enlarge, you have not got to the repeating frame. If you are successful, you should be able to move the data objects (ename, job, Sal) around.
    This is the most important frame as it contains the data objects and it directly relates to your SQL columns.
    Also note that they are several symbols on the data objects and the frames - a diamond symbol, 2 dashes - these relate to the vertical or horizontal elasticity of the objects.
    e.g.
    For the repeating frame, the vertical elasticity (2 dashes synbol) is 'Expand'.
    For the most outer frame, the vertical elasticity (diamond symbol) is 'Variable' - ie it can expand and contract. If there is no symbol, the elasticity is 'Fixed'.
    To do point 3...
    This is the same as point 2 except that the objects are just boiler plate text and they have lesser implications should you make a mistake. Select the heading objects and remove the FILL colour - ie. background colour.
    Once you have expanded all these objects and frames, examine the property values. In particular, look at the source of the repeating frame - eg. G-ename.
    Look at the source of the data objects - they relate directly to the SQL columns selected.
    The above should give you a good background information on how a tabular report is being constructed. Run the report - it should still work.
    To prove that you can build it manually, create a additonal mother frame and its associated objects below the original mother frame, use the following as a guide:
    (A) Create the Mother frame (the most outer frame) - fix up the properties. Use the Frame Icon on the Tools palette.
    (B) Create the headings frame within the Mother frame.
    (C) Create the headings - Use the Text (large T) Icon on the palette.
    (D) Create the repeating frame within the mother frame - Use the repeating frame (frame icon with a down arrow) icon on the palette. Note - the source property needs to be filled in.. The Vertical Elasticity property needs to be taken care of.
    (E) Create the data objects - Use the Field (abc) Icon. Note - the source property needs to be filled in.
    Check and match the properties with the original objects if need to.
    If you are successful, progress to a group above report (this will have an additonal repeating frame - for the group field). A matrix report (especially a Group Matrix) will be the hardest - do not attempt at this stage.
    Hope the above is of some help rather than a hindrance.
    Best of luck and Regards,
    John

  • Suggestion for a good book for webdynpro for java

    Hi, I am new to this technology,and i know a little bit basics,but i want to learn in depth regarding Webdynpro For Java and my backend is SAP R/3
             can anyone suggest me  a good book for webdynpro for java

    Hi padma,
    Check this link.
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/webdynpro?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d#9">Web Dynpro Sample Applications and Tutorials</a>
    Re: Guides for new entrant to Webdynpro
    Regards,
    Mithu

  • Need advise for a good book

    I'm a beginner and I'm looking to buy a good book to learn
    how to use dreamweaver, I went to amazon and most of the books
    about dreamweaver have good rating so it is hard to know which one
    is the best for me.
    What do you suggest?
    Thank you for your help.

    > I just bought the
    > missing manual and it seem very good!
    I'm especially fond of the TechEditor.
    Good luck!
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Yannorlando" <[email protected]> wrote in
    message
    news:fvv63f$d78$[email protected]..
    > Don't worry I know several web developer, they will help
    me. I just bought
    > the
    > missing manual and it seem very good! Thanks for your
    help
    >
    >
    quote:
    Originally posted by:
    Newsgroup User
    > Are they OK with a site that looks and performs as if it
    were the first
    > site
    > someone has built? I hope not....
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    > ==================
    >
    >
    > "Yannorlando" <[email protected]> wrote
    in message
    > news:fvt4tm$6o1$[email protected]..
    > > yes I'm starting learning HTML, for me advanced
    mean a website for a
    > > construction company with link picture etc.
    > >
    > > Thank you for your help
    >
    >
    >
    >
    >

  • Suggest a good book for learning?

    Hey, all.
    Trying to get into the automating/scripting thing as I've started a new job that has to do a lot of versions of similar animations/illustrations. I'm no programmer, but have had some success with simple AppleScripts in Illustrator and Photoshop, but After Effects doesn't like to play nice with AS. So I figure I may as well focus my efforts on ExtendScript/JavaScript to work with all the apps, be cross-platform, plus help with my limited Expressions knowledge.
    So can anyone suggest some good books for learning the JavaScript language? I've done online tutorials, which have helped a little, but just a big ol' consolidated JavaScript book, teaching the structure and syntax from the beginning (again, not a programmer by trade) would be best for me. Thing is, 95% of the books I've looked at are focused on web design, which I'm not that interested in. I'll use one if the core JavaScript teachings are well-presented and I can just ignore the web stuff; just don't want to buy a book that I'm only going to read half of and not learn everything I need to.
    All suggestions welcome, and thanks in advance.

    Hi there - lots of resources...
    Look up "eloquent javascript" online for a pdf.
    Javascript - The Definitive guide
    NewThinkTank on youtube
    Codeacademy
    Then it's the scripting guide for the other half.

  • Any Good Book on SQL , PL/SQL Tuning?

    Hi,
    Please suggest me some good book on SQL , PL/SQL Tuning?
    Thanks.
    --Sam                                                                                                                                                                               

    Anything specific you be looking for?
    Good SQL Books
    Good Online PL SQL Books, Examples &Tutorials
    Good Books for  learning PL/SQL
    good tuning links and books
    Need Assistance for choosing good Pl/SQL books
    Adith

  • Books / Tutorials for BODS Certification C_DS_41

    Dear Folks,
    Can anyone please refer any good books, guides, tutorials for SAP BODS 4.0 Certification C_DS_41. Either from SAP Press or from non SAP Press but approved by the SAP. Checked in most part of the internet but couldn't find a suitable book or ebook for the purpose of certification. Eagerly awaiting for your suggestions. Thanks in advance.
    Regards
    A Junaid

    Hi,
    I am not sure if there are DS books that will help you specifically with the certification, but  the following info in this blog  will help you with your prep. I followed those myself and passed it the exam.
    thanks
    Nawfal

  • Good Books on EJB !`

    Hi All,
    I am a newbie to EJB. The only technologies I am comfortable with are JSP, SERVLETS, JRUN. Please guide me with the best/good books on EJB and any other sites that offer good tutorials on EJB and ofcourse list of EJB forums are also appreciated. For EJB, which web server is suggested for a newbie to EJB like me and for advanced EJB users which webserver is suggested ?
    Thanks and Regards,
    rightthinking.

    i come from China.I also started with "Mastering Enterprise JavaBeans" (First Edition) from ED Roman.I have read "Professional EJB"(wrox publish) and Enterprise Beans, 2rd Edition by Richard Monson-Haefel.Because you are a beginner, i think it's better for u to start with "Mastering Enterprise JavaBean".Everything about EJB is described particularly in this book.When you master the concept of EJB, you would face questiongs about how to build a system with EJB, you can read "Professional EJB". In "Enterprise Beans", there are much good experiences and original explain, but now you have nothing about EJB, this book maybe be suitable for you.
    I'm not good at English. I hope i can give you a little help.These three books are all wonderful!!!

  • Any good books for learning flash?

    I'm trying to learn how to use flash, and there's only so much I can learn on my own. I looked up some books on various websites, but I don't know which would be the "best" to use for someone completely new to the program.

    I would recommend anything by David Stiller. He posts a lot on these forums and has a great way of explain the why and how of doing stuff in Flash.
    It also depends upon if you are planning on learning code or timeline animation (or both). Chris Georgenes (who also often posts here) is a genius animator and has some good books too.
    For animation through code I recommend Keith Peter's "Making Things Move."
    There are also great on-line tutorials like at gotoAndLearn.com by the amazing Lee Brimlow.
    That should get you started...

  • Suggest a good book and I am looking for following books? please help

    Dear all,
    I am looking for some help that if anybody can tell me some good book in which I can get complete information about how to go for a project from beginning to end.
    Specially I am looking for complete details about user roles and responsibilities in oracle forms that how can we build log-in screens and attaching all those securities to menu.
    Thanks and Regards
    Maz
    Edited by: 853604 on Sep 9, 2011 12:06 AM

    Hi
    get complete information about how to go for a project from beginning to end.as a Start here is a link for Oracle Tutorials...
    http://www.holowczak.com/
    and the iSelfSchooling
    http://www.iselfschooling.com/Free_Oracle_Training/02_Developers/01_Forms/lesson01.html
    For complete project pls search in this site
    http://www.araboug.org/
    it has an attendance , and other complete projects good users gave it to beginners and other developpers as a gift for learning, all u have to do is making such effort to search and translate to English.
    Hope this helps...
    Regards,
    Amatu Allah.

  • Good Book for Mac Os Mountain Lion

    Hello,
    I am looking for a good book and comprehensive for learning
    Mac OS Mountain Lion,
    Thanks !

    Welcome to the world of Mac. Some ‘light' reading to help the transition.
    A guide for switching to a Mac
    Anatomy of a Mac
    Mac Basics—Tutorials on using a Mac
    Mac OS X keyboard shortcuts,
    Mac Basics – Mac Find Out How
    Mac Basics – Switching From Windows
    Mac OS FAQ
    MacTips,
    Quick Assist
    Switch Basics
    Switching to Mac Superguide
    Switching to the Mac: The Missing Manual, Mountain Lion Edition
    Take Control E-books
    Welcome to the Switch To A Mac Guides

  • Suggestion for a Good Book

    Hi,
    Could someone suggest me a good book covering core java security (not J2EE)?. I'm looking for a book that covers all security related APIs that are part of Java 2 SDK 1.3.x + JSSE + JCE + JAAS or Java 2 SDK 1.4.x.
    Any help would be highly appreciated.
    Thanks.

    I've a book called "Professional Java Security",
    by Jess Garms and Daneil Somerfield, published by Wrox press.
    I've used it to dip my toes into the Java Cryptography extension, and
    it was very good. I got a TripleDES encryption utility working reasonably easy.
    Also covers JCA, JCE, JAAS, JSSE, SSL and E-Commerce.
    regards,
    Owen

  • GW 6.5 - A suggestion for a good book

    Hello people !
    I'm CNE in Brazil and I would like to know a good book to implement GroupWise 6.5.1 im my server that it will work with Border Manager 6.5 SP3 (Small Business Suite Starter Pack).
    Thanks in advance.

    These fourms are focused on developer issues, you will find that Novell has a
    different set of forums for general support, which have a lot more people answering
    questions.
    Say that take a look at Novell's own book
    http://www.novell.com/training/books...=bookAdm&val=3
    Roger Thomas, Dev SysOp 22
    <[email protected]> wrote in message news:Ovy4e.3095$[email protected]..
    Hello people !
    I'm CNE in Brazil and I would like to know a good book to implement GroupWise 6.5.1 im my server that it will work with Border Manager 6.5 SP3 (Small Business Suite Starter Pack).
    Thanks in advance.

Maybe you are looking for

  • To transport the values to cg3z tcode

    hi i have a folder on presentation server with some files  (excel files and text files) now i need to upload all the files at a time by calling the transaction in  my program . thats why i have used like this PARAMETERS: fr_fil type rlgrap-filename D

  • USB device not recognized until reboot

    Hi my G61 110 SA notebook fails to load drivers for any usb device, including Iphone 4, until i reboot. i have tried uninstalling all usb devices in the Device Manager, and allowing windows 7 SP1 to reload them, but this does not help. Any suggestion

  • Appleworks 6.2.9 install default is wrong

    Newbie here.. I've tried to update Appleworks 6.0 with the 6.2.9 updater on my iMAC g3 Pismo with MAC OS X 10.3.9--but the installer quits with the message "The default location can't be found. the install will be cancelled" I've tried to find and re

  • Can't see any of my recent calls. Who can help?

    Can't see any of my recent calls,even not the missed ones. Who can help?

  • Wireless drop down every 10 minutes

    I have Macbook air 11, I have problem with wireless connection, it drop down every 10minutes exactly. I tried everything to fix that with no use. manual solution is to turn off airport and turn it on again or renew the lease for your DHCP...Please he