The original Soundtrack is provided by Sarah Stradling.Original Censorship by Steven H. Grant.Entire story written by myself, I'm doing a credit roll for everything.Censorship by Callum.There is a Dr. Revai scene where he is having his dick sucked by a midget and he feels this other hand go up his ass and he flicks a hand over and has this look on his face that you know what's about to happen.Q:
¿Cómo podría convertir un objeto a cadena en Java?
Ya no se si existe tal cosa, pero me gustaría convertir un objeto a cadena en Java, sería bastante fácil, ya que el usuario sería de prácticas.
La idea es algo como esto.
//Código
public class Main {
public static void main(String[] args){
Personas p = new Personas();
p.nombre = "Juan";
p.apellido = "Bebiano";
p.edad = 27;
//Convertir el objeto a cadena.
System.out.println(p);
}
}
//Personas
public class Personas {
String nombre;
String apellido;
int edad;
A:
Con java.lang.String puedes convertir un objeto a cadena.
String texto = String.valueOf(p);
System.out.println(texto);
Related links:
Comments