Java, Java, Programlama 13 June 2020 Rabia Yurdakul No comments

Mülakatlarda Sorulan Core Java Soruları

1.”==” ve “equals” arasındaki fark nedir?“==” referans karşılaştırmasıdır. Her iki nesnenin Memory’de aynı konumu işaret edip etmediğine bakar.“equals” nesnelerin değerlerini karşılaştırır. Her iki nesne için de hashCode() methodundan dönen değer aynı ise kesinlikle equals true olur. 2. Overriding nedir?Override bir Annotation’dır. Base class da ki metotları sub class da kullanabilmemizi sağlar. Static methodlar için override […]

Java, Programming 12 April 2020 Rabia Yurdakul No comments

Unit Testing

Hello everyone,This writing includes; *What is unit testing? *When and why do we use unit testing? *How to do unit testing? We are going to find the answers to these questions. What is Unit Testing? Unit testing is a software development process where the smallest testable parts of an application are individually tested. Actually, unit […]