what is the difference b/w design pattern and architecture
Answers were Sorted based on User's Feedback
Answer / srinivasa
Design pattern is part of the architecture to solve the
design problem.
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / rai
Architeture is a plan what we have to do for a perticuler
problem whereas pattern is nothing ut a solution for that
pertuler probelm and pattern is designed based on some
rules.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / devarathnam c,kotagudibanda(po
Hi...
Architecture is nothing but plan for a specfic problem.
Design pattern is a solution for a given problem.I think in
java perspective "class" is a plan(blue print) and "object"
is a solution.
Is This Answer Correct ? | 1 Yes | 7 No |
What is bytecode in java ?
Can you explain the difference b/n abtract and interface with a good example,?In what cases we have use abtract and what case interface?
What is the use of Getters and Setters method ?
When can we say that threads are not lightweight process in java?
Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }
Difference between an argument and a parameter?
10 Answers Accounting, HCL, IBM, Quinnox,
Can we have multiple classes in single file ?
What are Transient and Volatile Modifiers?
3 Answers SAP Labs, TUP Manila,
How to prevent a field from serialization ?
What is the name of the java compiler?
what is hashmap& hashtable with example?
How does java enable high performance?