Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
KaiquanMah
/
TurkuBasicOOPinJava
like
0
Running
App
Files
Files
Community
a3fe381
TurkuBasicOOPinJava
/
Week 6: Methods of OO Programming
14.6 kB
1 contributor
History:
5 commits
KaiquanMah
public static String FINLAND = "FI";
a3fe381
verified
4 months ago
01A. Static members [= CLASS MEMBER, not object member]
Safe
5.13 kB
public static dtype method1(param1) {...}
4 months ago
01B. Class StringHelper
Safe
2.15 kB
public static int method1(dtype param1)
4 months ago
02. Class SecretAgent
Safe
4.39 kB
if (staticMethod2(param1)) {...}
4 months ago
03A. Class variables = STATIC VARIABLES
Safe
2.21 kB
public static dtype STATICVARIABLEINCAPS = <value>;
4 months ago
03B. Nordic countries as class variables
Safe
728 Bytes
public static String FINLAND = "FI";
4 months ago