小编Fox*_*ven的帖子

在Eclipse中调试时如何跳过JRE代码?

在Eclipse中调试时,我进入(F5)一个如下的语句,

encryptedBytes = LightWeightEncryptor.encrypt(messageBytes, password.toCharArray());
Run Code Online (Sandbox Code Playgroud)

调试器步入JRE方法String.toCharArray(),但我希望它跳过它并进入我自己的代码LightWeightEncryptor.encrypt.

我厌倦了不得不退出JRE代码并退回到我自己的代码中.我已经看到很多方法可以进入JRE代码,但我找不到避免它的方法.

java eclipse debugging

19
推荐指数
1
解决办法
4736
查看次数

如何将Resharper设置为仅用一个选项卡缩进包装线?

如何将Resharper设置为缩进包装的C#行,只包含一个选项卡,用于包围的行(当然第一行除外)?

如果我将连续线缩进倍数设置为零,我得到这个:

This is a really long 
statement that wraps around
and takes up three lines of code;
Run Code Online (Sandbox Code Playgroud)

如果我将连续线缩进倍数设置为1,我会得到这个阶梯效果:

This is a really long
    statement that wraps around
        and takes up three lines of code;
Run Code Online (Sandbox Code Playgroud)

我真正想要的是这个(普通的旧悬挂式缩进样式):

This is a really long
    statement that wraps around
    and takes up three lines of code;
Run Code Online (Sandbox Code Playgroud)

Dmitry Osinovskiy 在这里暗示Resharper 8可能能够做到这一点,但我有8.0.2,我仍然没有办法做到这一点.

c# resharper indentation word-wrap

9
推荐指数
0
解决办法
422
查看次数

标签 统计

c# ×1

debugging ×1

eclipse ×1

indentation ×1

java ×1

resharper ×1

word-wrap ×1