Foram usados os métodos Getter e Setter além de conversão de String para Integer e o contrário também.
private void btnSomaActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
/*para inserir o digitado na vatiável n1 usamos o gettext, mas como
* os tipos são incompativeis (int - String) temos que fazer a conversão
* usando o Integer.parseInt
*/
int n1 = Integer.parseInt(txtN1.getText());
int n2 = Integer.parseInt(txtN2.getText()) ;
int s = n1 + n2;
/* Para mostrar o resultado usamos o setText e fazemos a conversão
* usando Integer.tostring
*/
lblResultado.setText(Integer.toString(s));
Nenhum comentário:
Postar um comentário