StyleConstants.setFontSize()不接受AtrributeSet参数,只接受MutableAttributeSetStyleConstants.setFontSize()不接受AtrributeSet参数,只接受MutableAttributeSet
时间: 2024-06-03 20:10:53 浏览: 44
JTextPane--insert-Image.zip_JTextPane
。这是为什么呢?
这是因为StyleConstants.setFontSize()方法需要修改属性值,而AttributeSet是不可修改的。MutableAttributeSet实现了AttributeSet接口,并且添加了可修改属性的能力,因此StyleConstants.setFontSize()方法只接受MutableAttributeSet参数。
阅读全文