Atajos útiles en Netbeans
· Ctrl + Space : Completa el código que estamos escribiendo. Por ejemplo, si queremos escribir LocateRegistry solamente escribimos Loc y presionamos el atajo para que nos sugiera la palabra completa. Si presionamos dos veces el atajo, muestra todas las opciones que comiencen con los caracteres escritos.
· Alt + Insert: Agrega constructores, métodos accesores, propiedaes, overrides, etc..
· Alt + Enter : Se usa sobre el texto subrayado para ver la sugerencia que nos hace el IDE cuando hay algún error de sintaxis o se necesita realizar algun import o surround
· Ctrl + R: Si lo hacemos sobre el identificador, renombra todas las ocurrencias.
Los atajos siguientes son escribiendo la palabra mencionada y presionando tabulador:
· fcom + Tab: Se obtiene el código para agrupar y comentar. Ejemplo
· fore + [TAB] : Genera un bucle foreach típico.
· forek + [TAB] : Nos generará un bucle foreach, extrayendo también la clave del array.
· my_fa + [TAB] : Genera un bucle while, extrayendo los datos de una consulta mysql en forma de array.
· my_fo + [TAB] : Genera un bucle while, extrayendo los datos de una consulta mysql en forma de objeto.
· my_fr + [TAB] : Genera un bucle while, extrayendo los datos de una consulta mysql en forma de filas.
EXPLICACIÓN
|
SECUENCIA
|
RESULTADO
| |
Cómo auto-insertar bloque try catch.
|
try { } ca + <tab>
|
try{
} catch (Exception ex) {
ErrorManager.showExceptionDialog(ex); } | |
Cómo auto-insertar get & set
|
Ctrl + Ins -> Abre diálogo para auto insertar y selecciona get & set o sólo get, o sólo set.
|
public x getX(){
return this.x; }
public setX(X x){
this.x = x; } | |
Cómo auto-insertar constructores
|
Ctrl + Ins Seleccionamos constructores
|
public nombreClase(){
}
| |
Shortcut public
|
pu +<tab>
|
public
| |
Shortcut nombre de clases
|
TMC + <Control><space>
|
TableModelColumn Si escribes las mayúsculas te busca los ficheros que coinciden dichas mayúsculas o tienen más a la derecha.
| |
Shortcut throws
|
th + <tab>
|
throws
| |
Shortcut exception
|
Ex + <tab>
|
Exception
| |
Shortcut false
|
fa + <tab>
|
False
| |
Shortcut interface
|
in + <tab>
|
interface
| |
Shortcut private
|
pr + <tab>
|
private
| |
Cómo auto-insertar bloque if
|
if + <tab>
|
if (true) {
}
| |
Abreviatura
|
Resultado
| ||
En
|
Enumeration
| ||
Ex
|
Exception
| ||
Ob
|
Object
| ||
Psf
|
public static final
|
Psfb
|
public static final boolean
|
Psfi
|
public static final int
|
Psfs
|
public static final String
|
St
|
String
|
ab
|
abstract
|
bo
|
boolean
|
br
|
break
|
ca
|
catch(
|
cl
|
class
|
cn
|
continue
|
df
|
default:
|
dowhile
|
do{
}while(condition);
|
eq
|
equals
|
ex
|
extends
|
fa
|
false
|
fi
|
final
|
fl
|
float
|
forc
|
for (Iterator it = collection.iterator();
it.hasNext();) {
Object elem = (Object) it.next();
}
|
fore
|
for (Object elem : iterable) {
}
|
fori
|
for (int i = 0; i < arr.length; i++) {
}
|
fy
|
finally
|
ie
|
interface
|
ifelse
|
if (condition){}else {
}
|
im
|
implements
|
iof
|
instanceof
|
ir
|
import
|
le
|
length
|
newo
|
Object name = new Object(args);
|
pe
|
protected
|
pr
|
private
|
psf
|
private static final
|
psfb
|
private static final boolean
|
Psfi
|
private static final int
|
psfs
|
private static final String
|
pst
|
printStackTrace();
|
psvm
|
public static void main(String[] args){
}
|
pu
|
public
|
re
|
return
|
serr
|
System.err.println("");
|
sout
|
System.out.println("");
|
st
|
static
|
sw
|
switch(
|
sy
|
synchronized
|
tds
|
Thread.dumpStack();
|
th
|
throws
|
trycatch
|
try {}
catch (Exception e) {}
|
tw
|
throw
|
twn
|
throw new
|
wh
|
while(
|
whileit
|
while (it.hasNext()) {
Object elem = (Object) it.next();
}
|
0 comentarios:
Publicar un comentario