Hi,,

In my application i'm using more than 40 variables.

when i try to execute my project it is taking more time than other projects.

Which will make faster loading?..

whether declaring in class or method ?.

*example 1*

Public class sample
{

private int s1;
private int s2;


public void sample_method()
{
}

}


*example 2:-*

Public class sample
{

public void sample_method()

{

int s1;

int s2;

}

}


which one will be fast example 1or example 2 ?....

Any one can tell this?...

-- 
Thanks & Regards
Sasikumar.S

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to