Sumario Resumen - Implementación de buenas prácticas con JAVA
2 views 0 purchase
Course
Software Engineer
Institution
Software Engineer
Se realiza un resumen de las consideraciones que se deben tener en cuenta para elaborar un código más legible al momento de escribir código, esto está implementado en JAVA pero se puede tener el concepto para utilizarlo en cualquier otro lenguaje de programación
Buenas prácticas de programación en
Java
Legibilidad del código
1. - Utiliza nombres de variables y métodos descriptivos y sigue una convención de
nomenclatura consistente.
2. - Utiliza comentarios para explicar el código cuando sea necesario.
3. - Evita el uso de código duplicado y mantén el código organizado y estructurado.
Ejemplo:
public class Ejemplo {
// Atributos
private String nombreCompleto;
private int edadUsuario;
// Métodos
public void saludar() {
System.out.println("Hola, mi nombre es " + nombreCompleto);
}
public void setNombreCompleto(String nombreCompleto) {
this.nombreCompleto = nombreCompleto;
}
public void setEdadUsuario(int edadUsuario) {
this.edadUsuario = edadUsuario;
}
}
Encapsulamiento
1. Oculta los detalles internos de una clase y expone sólo los métodos y atributos
necesarios para interactuar con ella.
2. Utiliza modificadores de acceso para controlar el acceso a los atributos y métodos
de una clase.
, Ejemplo:
public class Persona {
// Atributos privados
private String nombreCompleto;
private int edad;
// Métodos públicos
public void saludar() {
System.out.println("Hola, mi nombre es " + nombreCompleto);
}
public void setNombreCompleto(String nombreCompleto) {
this.nombreCompleto = nombreCompleto;
}
public void setEdad(int edad) {
this.edad = edad;
}
Herencia y polimorfismo
1. Utiliza la herencia y el polimorfismo solo cuando sea necesario y asegúrate de que
estén diseñados de manera adecuada.
2. Utiliza interfaces para definir contratos entre clases.
Ejemplo:
public class Alumno extends Persona {
// Atributos
private int matricula;
// Métodos
public void estudiar() {
System.out.println("Estoy estudiando");
}
public void setMatricula(int matricula) {
this.matricula = matricula;
The benefits of buying summaries with Stuvia:
Guaranteed quality through customer reviews
Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.
Quick and easy check-out
You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.
Focus on what matters
Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!
Frequently asked questions
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
Satisfaction guarantee: how does it work?
Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.
Who am I buying these notes from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller jstivenpachong. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for $2.99. You're not tied to anything after your purchase.