Posts by Hipólito • 91 points
5 posts
-
1
votes1
answer180
viewsQ: How to create getter from Local Date variable?
I have a class called Hospede, where I have the method getData_entrada(), that returns a variable LocalDate(new java8 API). However, when I try to capture this method, it always returns to me…
-
1
votes3
answers181
viewsQ: How do I use the new Java 8 Date API?
I would like to know how I compile in my Gradle Build to make available the new java 8 date API in my android studio
-
0
votes1
answer6358
viewsQ: Android Studio does not recognize USB device
I have a device Motorola MOTO E 2nd Generation, I can install applications through USB debugging on other computers, however, in this specific PC Android Studio does not appear my device. On the…
android-studioasked Hipólito 91 -
0
votes0
answers101
viewsQ: Android Studio does not recognize R. Any Solution?
package com.example.consult.myapplication; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity { @Override protected void…
android-studioasked Hipólito 91 -
5
votes2
answers262
viewsQ: How secure is my code, with private variables?
class Conta(object): def __init__(self, numero_conta, nome_titular='anonimo'): self.__nome_titular = nome_titular self.__numero_conta = numero_conta self.__saldo = 0.00 def getNomeTitular(self):…