0

我在外部类中声明了一些变量,并试图从内部类中获取这些变量的值,并在外部类的方法中对这些变量进行一些操作。我在这里分享我是如何尝试通过一些示例代码来做到这一点的。它不起作用,String值保持为空。我犯了一些错误,或者实际上不知道该怎么做。我假设如果外部类在内部类中更改,外部类将获得变量的更新值。请帮忙。我不是一个很好的程序员,所以可能缺乏基础知识。谢谢。

public class ABC
{
    private String begin, end;
    private SimpleDateFormat fromUser = new SimpleDateFormat("yyyy/MM/dd");
    private SimpleDateFormat myFormat = new SimpleDateFormat("yyyy-MM-dd");

    // Days in Current Month
    public X()
    {
       new getDate(this).execute();
    }

    public format(){
       String currdate = "2013/06/06"

       try {
            String reformattedbegin = myFormat.format(fromUser.parse(begin));
            String reformattedend = myFormat.format(fromUser.parse(end));
            Date begdate = myFormat.parse(reformattedbegin);
            Date enddate = myFormat.parse(reformattedend);
            Date currentdate = myFormat.parse(currdate);

            if(currentdate.after(begdate) && currentdate.before(enddate))
                System.out.println(enddate + "" + begindate + ""                       +currendate);
        } catch (ParseException e) {
            e.printStackTrace();
        }
    }

    private class getdate
     {
        begin = "2013/06/05";
        end = "2013/06/07"
      }  
  }
4

1 回答 1

0

我实际上想出了如何使用它。使用适配器并将外部类作为适配器类解决了这个问题。对不起,我没有适当地提及代码。感谢大家的支持。

于 2013-06-06T14:56:26.107 回答