Otra vez con la deepweb? Que se ha puesto de moda o algo? xDD
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menúimport java.util.Vector;
public class Author{
/** Name of the Author */
private String name;
/**
* Constructor.
* @param name Name of the author
*/
public Author(String name) {
this.name = name;
}
/**
* Gets the name of the Author
* @return Name of the author
*/
public String getName() {
return this.name;
}
}
public class Main1 {
/**
* Entry point.
* @param args Command-line arguments
*/
public static void main(String args[]) {
Material m1 = new Material("Object Oriented Programming. Java practices");
Material m2 = new Material("UML cases");
Material m3 = new Material("Introduction to Programming");
Material m4 = new Material("Algebra Theory");
Material m5 = new Material("Graph Theory");
Author a1 = new Author("John Pitt");
Author a2 = new Author("Ella Stallone");
Author a3 = new Author("Josh MacQueen");
Author a4 = new Author("Peter Hoffmann");
Author a5 = new Author("Stella Clooney");
Author a6 = new Author("George Damon");
Author a7 = new Author("Sarah Burton");
// ADD AUTHOR a1 TO MATERIAL m1
m1.addAuthor(a1);
// ADD AUTHOR a5 TO MATERIAL m1
m1.addAuthor(a5);
// ADD AUTHOR a6 TO MATERIAL m1
m1.addAuthor(a6);
// a5 is already author of m1, it should not be added again
m1.addAuthor(a5);
m2.addAuthor(a1);
m3.addAuthor(a2);
m3.addAuthor(a7);
m4.addAuthor(a2);
m4.addAuthor(a4);
m4.addAuthor(a3);
// Try to add 1 more author than the maximum number of authors a material can have
m4.addAuthor(a1);
public class Material extends Author {
/** Maximum number of Authors in any Material */
private static final int MAX_AUTHORS = 3;
/** Material Authors */
private Author[] authors;
/** Authors number */
private int authorsN;
/** Materials Title */
private String title;
/**
* Constructor.
* @param title The title of this material
*/
public Material(String title) {
super(name);
this.title = title;
this.authorsN = 0;
}
public class Material extends Author {
/** Maximum number of Authors in any Material */
private static final int MAX_AUTHORS = 3;
/** Material Authors */
private Author[] authors;
/** Authors number */
private int authorsN;
/** Materials Title */
private String title;
/**
* Constructor.
* @param title The title of this material
*/
public Material(String title) { //si lo dejo asi, el compilador me dice que debo hacer modificaciones en la clase Author. Si en vez de (String title) anado (String title, String name) me aparece problema de compilado en la clase main.
super(name); //si en vez de name escribo title el programa me compila bien
this.title = title;
this.authorsN = 0;
}
public static void main(String args[]) {
Material m1 = new Material("Object Oriented Programming. Java practices");
Material m2 = new Material("UML cases");
Material m3 = new Material("Introduction to Programming");
Material m4 = new Material("Algebra Theory");
Material m5 = new Material("Graph Theory");
}
public Material(String title) {
super(name);
//private String name; original
protected static String name; //lo que debo modificar segun el compilador
Cita de: MGGM en 1 Octubre 2015, 00:45 AM
El if no tiene llave de apertura pero sí de cierre. Por lo tanto, la llave de cierre del if cierra el for y la llave de cierre del for cierra el while, por ende, swapped no existe fuera del while.
public void sort() {
boolean end = false; //SINTACTIC ERROR: we must write boolean and not bool
int upperLimit = this.quantity - 1;
while ((upperLimit > 0) && (!end)) {
boolean swapped = false;
for (int j = 0; j < upperLimit; j++) {
if (!isSorted(j, j+1))
swap(j, j + 1);
swapped = true;
}
}
if (!swapped) { //aquí es donde me falla
end = true;
}
upperLimit++;
};
CitarStep 2. Run "bcdedit -set loadoptions DISABLE_INTEGRITY_CHECKS" (without the "").
Step 3. To finalize the process run "bcdedit -set TESTSIGNING ON" (without the "").
Cita de: Absolut34 en 2 Julio 2014, 09:41 AM
Hola a todos.
Espero que sea el sitio correcto para expresar este tema. Explico lo que busco:
Estoy buscando una herramienta que permita hacer un formateo de un portátil de forma remota.
La idea es que si una persona pierde un portátil, la persona que lo encuentre (o lo robe) cuando conecte este portátil a internet, se active un software para que se formatee el equipo.
La lógica dice que para ello, yo debo tener un equipo que haga de server y en el que esté instalado ese software y que en el portátil robado también esté instalado el cliente.
No me importa si la aplicación no es gratuita, pero estoy muy interesado.
Muchas gracias.