java中什么样的实例化不用new?
比如说一般情况下实例化是Scannersc=newScanner();这样的,但是正则表达式的PatternpatternImg=Pattern.compile("");...
比如说一般情况下实例化是Scanner sc = new Scanner();这样的,但是正则表达式的Pattern patternImg = Pattern.compile("");这个就没有用到new的实例化,为什么呢
展开
2个回答
展开全部
静态方法不用new。
因为静态的定义,存在于整个程序的运行时,当程序启动时,已经分配了内存资源。所以不需要再new
因为静态的定义,存在于整个程序的运行时,当程序启动时,已经分配了内存资源。所以不需要再new
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
``` java
/**
* Compiles the given regular expression into a pattern.
*
* @param regex
* The expression to be compiled
* @return the given regular expression compiled into a pattern
* @throws PatternSyntaxException
* If the expression's syntax is invalid
*/
public static Pattern compile(String regex) {
return new Pattern(regex, 0);
}
```
内部封装而已
/**
* Compiles the given regular expression into a pattern.
*
* @param regex
* The expression to be compiled
* @return the given regular expression compiled into a pattern
* @throws PatternSyntaxException
* If the expression's syntax is invalid
*/
public static Pattern compile(String regex) {
return new Pattern(regex, 0);
}
```
内部封装而已
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询