Tampilkan postingan dengan label are. Tampilkan semua postingan
Tampilkan postingan dengan label are. Tampilkan semua postingan

AutoCAD Sheet Sets – Questions are Answered

Rabu, 19 Maret 2014

0 komentar

Novedge was kind enough to invite me to host a Webinar for them.  I did and as far as I can tell it went well.  There was a great response and the attendees asked fantastic questions.  I was the one presenting the information but I was able to learn a few things from their questions.  That’s why I love doing things like this.


Novedge recorded the webinar that lasted about one hour long.  In this presentation I go over a few of the basics of using AutoCAD Sheet Sets and progress into some of the more advanced project management aspects of the tool.  The last few minutes of the webinar contain an question and answer session.  There were several questions asked that we didn’t have time to go into so I answered them later on.  Novedge has published the video and the answers to the questions on their website.

Go check it out.  And check out my new AutoCAD Sheet Sets training video.  It has over three hours of hands-on demonstration (including example files for you to work with) on everything there is to know about Sheet Sets.

Read More..

If you are using AutoCAD and do not create 3D content then why are you using AutoCAD

Senin, 17 Maret 2014

0 komentar

Is this a fair question to ask?  AutoCAD LT® can do almost everything "regular" AutoCAD® can except for 3D modeling/rendering features and LISP routines, essentially.  Are you waisting your companys resources by not purchasing AutoCAD LT®?  I dont know, ok I do, but, still.  What do you think?  If you arent creating 3D content, why?  If you arent using LISP routines then I ask the same question, why?

Why do you limit yourself?  Why do you pay for tools that you refuse to use?  If you are creating items that only have two dimensions why are you using a three dimensional creation tool?  Many sheet metal fabricators use AutoCAD LT®.  They get it.

Im not trying to be mean here I am honestly curious.  If you purchased a house with three floors would you only use two of them?  At least store stuff in the third floor right?  Have you ever said to yourself or others, "Ive never seen a real need to walk up the stairs to the third floor so I dont use it."  Youre paying to heat/cool it and to protect it from the elements.

Make an argument for purchasing full on AutoCAD® but for using it like its AutoCAD LT®.
Read More..

What are final methods in Java

Selasa, 11 Februari 2014

0 komentar
Hello guys, Java Code Online welcomes you back again, and is going to discuss about the final methods in the Java Programming Language. The Java language provides its users with many resources and tools. There are many features in the Java language that makes it very powerful. Final access modifier is one of those features, that makes Java really solid.

If a method is marked as final, then it implies that it cannot be overridden. So any class that extends the class containing the final methods, cannot override the methods marked final. If any attempt is done to override a final method in a sub class, leads to Java Compiler error.

An example of a final method in a class is:-

/////////////////////////////

class TestFinal{

public final void finalTested(){
//Working of this method
}

//Some other methods

}

/////////////////////////////

The above Java code depicts the use of final when applied to methods.

You may be thinking that what is the advantage of making a method final, though it defies the basic principle of OOPS, that is the final methods are non supportive of inheritance, as they cannot be overridden. It implies that they cannot be extended, and so also makes Polymorphism not feasible for it.

Hmmm... it implies that there are many drawbacks of the final method, but still Java provides it. So there must be some advantage of it also... Lets check them out.

Think of a scenario, that you have made a class, and you want a particular method to be implemented in exactly a particular way, and one should be never allowed to change this implementation. There are many possibilities for it. Like there are many methods in the Java API, which are guaranteed to work in a fixed way, and there is no way we can change them. This scenario calls for marking the method of the class as final. Later I will tell you about the Template Design Pattern which is based on this concept.

I hope you got my point. Whenever you want the methods to be locked, and should not be allowed to be modified, then final is the keyword to be used. The class can still be inherited since it is not marked final, and so the concept of Inheritance and Polymorphism can easily work here, but only for methods which are not marked as final in the super class.

Hope that the article was helpful to you all in understanding the final methods in Java. Keep ticking Java Code Online for more details on Java.
Read More..

Copyright © 2010 Computer Tips and Trick | Powered By Blogger